mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2026-09-09 18:03:21 +00:00
[ADF-2629] Fix infinite pagination and e2e parallel task (#3691)
* change infinite pagination logic make merge in share adapter a real merge * missing semi column * type problem * fix pagination infinite test * tentative file detector * add other remote files for webdriver * parallel execution test * fix refresh browser e2e * missing driver remote in util
This commit is contained in:
committed by
Eugenio Romano
parent
2602879cba
commit
83b2857097
@@ -20,6 +20,8 @@ import User = require('../models/APS/User');
|
||||
import TestConfig = require('../test.config');
|
||||
import path = require('path');
|
||||
import fs = require('fs');
|
||||
import remote = require('selenium-webdriver/remote');
|
||||
import { browser } from "protractor";
|
||||
|
||||
export class UsersActions {
|
||||
|
||||
@@ -46,6 +48,8 @@ export class UsersActions {
|
||||
}
|
||||
|
||||
async changeProfilePictureAps(alfrescoJsApi, fileLocation) {
|
||||
browser.setFileDetector(new remote.FileDetector());
|
||||
|
||||
let pathFile = path.join(TestConfig.main.rootPath + fileLocation);
|
||||
let file = fs.createReadStream(pathFile);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user