seedling/source/selenium/src/pages/HomePage.ts
Roman Jaroš b97b70ba01
All checks were successful
forgejo/Procyon/seedling/pipeline/pr-master This commit looks good
forgejo/Procyon/seedling/pipeline/head This commit looks good
Replace UI module with Next.js
2023-12-29 14:13:02 +00:00

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 = {};
}