OBA Website automated using playwright
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.
|
exports.RunnerListPage=
|
|
class RunnerListPage {
|
|
|
|
constructor(page) {
|
|
this.page = page;
|
|
this.runnerListButton="//span[normalize-space()='Runner list']";
|
|
this.userTypeFlip="//span[@class='flip-indecator']";
|
|
this.searchText="//input[@id='oba_user_search']";
|
|
this.searchButton="//button[@id='oba_user_search_btn']";
|
|
|
|
}
|
|
async clickrunnerListButton(){
|
|
await this.page.locator(this.runnerListButton).click();
|
|
}
|
|
}
|