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.
 

15 lines
464 B

exports.Feedback=
class Feedback {
constructor(page) {
this.page = page;
this.selectFeedbackType="//span[@class='flip-indecator']";
this.searchFeedback="//input[@id='oba_feedback_search']";
this.searchButton="//i[@class='fa fa-lg fa-fw fa-search']";
this.feedbackButton="//span[normalize-space()='Feedback']";
}
async clickContentButton(){
await this.page.locator(this.contentButton).click();
}
}