16 lines
301 B
TypeScript
16 lines
301 B
TypeScript
|
import { binding } from 'cucumber-tsflow';
|
||
|
import { By } from 'selenium-webdriver';
|
||
|
|
||
|
import { BasePage } from '../common/BasePage';
|
||
|
|
||
|
@binding()
|
||
|
export class HomePage extends BasePage {
|
||
|
protected url = '/';
|
||
|
|
||
|
// initial div
|
||
|
public root = By.xpath('//body');
|
||
|
|
||
|
// page buttons
|
||
|
public buttons = {};
|
||
|
}
|