-
Notifications
You must be signed in to change notification settings - Fork 2
/
basePage.ts
56 lines (52 loc) · 2.47 KB
/
basePage.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
import { Builder, By, Capabilities, until, WebDriver, WebElement, Actions } from "selenium-webdriver";
const chromedriver = require('chromedriver');
interface Options {
driver?: WebDriver;
//if no driver is supplied we make one or use the one in our constructor.
url?: string;
//if no url is supplied we give it one or pass back an error.
};
export class BasePage {
driver: WebDriver;
url: string;
constructor(options?: Options) {
if (options && options.driver) this.driver = options.driver
else
this.driver = new Builder().withCapabilities(Capabilities.chrome()).build();
if(options && options.url) this.url = options.url
};
async navigate(url?: string): Promise<void> {
if (url) return await this.driver.get(url)//!is when url is given in the test i.e page.navigate(www.whatever.co)
else if (this.url) return await this.driver.get(this.url)//!is when the url is given in the page object 'this' referring to the class.
else
return Promise.reject('BasePage need a url in the test or the page object.')
};
async getElement(elementBy: By): Promise<WebElement> {
await this.driver.wait(until.elementLocated(elementBy));
let element = await this.driver.findElement(elementBy);
await this.driver.wait(until.elementIsVisible(element));
return element;
};
async click(elementBy: By): Promise<void> {
return (await this.getElement(elementBy)).click();
};
async setInput(elementBy: By, keys: any): Promise<void> {
let input = await this.getElement(elementBy);
await input.clear();
return input.sendKeys(keys);
};
async getText(elementBy: By): Promise<string> {
return (await this.getElement(elementBy)).getText();
};
async getAttribute(elementBy: By, attribute: string): Promise<string> {
return (await this.getElement(elementBy)).getAttribute(attribute);
};
actionWiggle(actions: Actions, originElement: WebElement, moveDurationMS: number = 100): Actions {
return actions.move({origin: originElement, duration: moveDurationMS})
.move({origin: originElement, x:10, y: 0, duration: moveDurationMS})
.move({origin: originElement, x:0, y:10, duration: moveDurationMS})
.move({origin: originElement, x:10, y:0, duration: moveDurationMS})
.move({origin: originElement, x:0, y:10, duration: moveDurationMS})
.pause(moveDurationMS)
};
};