A fork of https://github.com/ueokande/vim-vixen
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
94 lines
2.9 KiB
94 lines
2.9 KiB
5 years ago
|
import { WebDriver, By, until } from 'selenium-webdriver';
|
||
|
import { Console } from './Console';
|
||
|
|
||
|
type Hint = {
|
||
|
displayed: boolean,
|
||
|
text: string,
|
||
|
};
|
||
|
|
||
|
export default class Page {
|
||
|
private constructor(private webdriver: WebDriver) {
|
||
|
}
|
||
|
|
||
|
static async currentContext(webdriver: WebDriver): Promise<Page> {
|
||
|
await Page.waitForConsoleLoaded(webdriver);
|
||
|
return new Page(webdriver);
|
||
|
}
|
||
|
|
||
|
static async navigateTo(webdriver: WebDriver, url: string): Promise<Page> {
|
||
|
await webdriver.navigate().to(url);
|
||
|
await Page.waitForConsoleLoaded(webdriver);
|
||
|
return new Page(webdriver);
|
||
|
}
|
||
|
|
||
|
async sendKeys(...keys: Array<string|number|Promise<string|number>>): Promise<void> {
|
||
|
let body = await this.webdriver.findElement(By.css('body'));
|
||
|
await body.sendKeys(...keys);
|
||
|
}
|
||
|
|
||
|
async navigateTo(url: string): Promise<Page> {
|
||
|
await this.webdriver.navigate().to(url);
|
||
|
await Page.waitForConsoleLoaded(this.webdriver);
|
||
|
return new Page(this.webdriver);
|
||
|
}
|
||
|
|
||
|
async showConsole(): Promise<Console> {
|
||
|
let iframe = this.webdriver.findElement(By.css('#vimvixen-console-frame'));
|
||
|
|
||
|
await this.sendKeys(':');
|
||
|
await this.webdriver.wait(until.elementIsVisible(iframe));
|
||
|
await this.webdriver.switchTo().frame(0);
|
||
|
await this.webdriver.wait(until.elementLocated(By.css('input.vimvixen-console-command-input')));
|
||
|
return new Console(this.webdriver);
|
||
|
}
|
||
|
|
||
|
async getConsole(): Promise<Console> {
|
||
|
let iframe = this.webdriver.findElement(By.css('#vimvixen-console-frame'));
|
||
|
|
||
|
await this.webdriver.wait(until.elementIsVisible(iframe));
|
||
|
await this.webdriver.switchTo().frame(0);
|
||
|
return new Console(this.webdriver);
|
||
|
}
|
||
|
|
||
|
async getScrollX(): Promise<number> {
|
||
|
return await this.webdriver.executeScript(() => window.pageXOffset);
|
||
|
}
|
||
|
|
||
|
getScrollY(): Promise<number> {
|
||
|
return this.webdriver.executeScript(() => window.pageYOffset);
|
||
|
}
|
||
|
|
||
|
scrollTo(x: number, y: number): Promise<void> {
|
||
|
return this.webdriver.executeScript(`window.scrollTo(${x}, ${y})`);
|
||
|
}
|
||
|
|
||
|
pageHeight(): Promise<number> {
|
||
|
return this.webdriver.executeScript(() => window.document.documentElement.clientHeight);
|
||
|
}
|
||
|
|
||
|
async waitAndGetHints(): Promise<Hint[]> {
|
||
|
await this.webdriver.wait(until.elementsLocated(By.css('.vimvixen-hint')));
|
||
|
|
||
|
let elements = await this.webdriver.findElements(By.css(`.vimvixen-hint`));
|
||
|
let hints = [];
|
||
|
for (let e of elements) {
|
||
|
let display = await e.getCssValue('display');
|
||
|
let text = await e.getText();
|
||
|
hints.push({
|
||
|
displayed: display !== 'none',
|
||
|
text: text,
|
||
|
});
|
||
|
}
|
||
|
return hints;
|
||
|
}
|
||
|
|
||
|
private static async waitForConsoleLoaded(webdriver: WebDriver) {
|
||
|
let topFrame = await webdriver.executeScript(() => window.top === window);
|
||
|
if (!topFrame) {
|
||
|
return;
|
||
|
}
|
||
|
await webdriver.wait(until.elementLocated(By.css('iframe.vimvixen-console-frame')));
|
||
|
await new Promise(resolve => setTimeout(resolve, 100));
|
||
|
}
|
||
|
}
|