15 lines
301 B
TypeScript
15 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 = {};
|
|
}
|