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(); } }