seedling/source/selenium/src/pages/HomePage.ts

16 lines
301 B
TypeScript
Raw Normal View History

2023-12-28 21:58:08 +00:00
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 = {};
}