mirror of
https://github.com/GNS3/gns3-web-ui.git
synced 2024-12-20 13:33:06 +00:00
22 lines
397 B
TypeScript
22 lines
397 B
TypeScript
import { browser } from 'protractor';
|
|
|
|
export class TestHelper {
|
|
sleep(value: number) {
|
|
browser.sleep(value);
|
|
}
|
|
|
|
waitForLoading() {
|
|
browser.waitForAngular();
|
|
}
|
|
|
|
async asyncForEach(array, callback) {
|
|
for (let index = 0; index < array.length; index++) {
|
|
await callback(array[index], index, array);
|
|
}
|
|
}
|
|
|
|
getCurrentUrl() {
|
|
return browser.getCurrentUrl();
|
|
}
|
|
}
|