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.
 

17 lines
303 B

exports.AddressListAPI=
class AddressListAPI {
constructor(page) {
this.page = page;
this.addressLine="//div[normalize-space()='Address : 37, Thomas Mount, 627109']";
}
async clickCatalogButton(){
await this.page.locator(this.catlogButton).click();
}
}