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