2019-09-23 14:29:53 +00:00
|
|
|
import { Selector, t } from "testcafe";
|
2019-09-11 12:21:19 +00:00
|
|
|
|
2019-09-23 14:29:53 +00:00
|
|
|
export default class HomePage {
|
|
|
|
constructor() {
|
2020-07-02 10:59:09 +00:00
|
|
|
this.header = Selector('[data-test="home-header"]');
|
|
|
|
this.catalogMenu = Selector('[data-test="Catalog"]');
|
2019-09-23 14:29:53 +00:00
|
|
|
this.productsSubMenu = Selector(
|
2020-07-02 10:59:09 +00:00
|
|
|
'[data-test="catalogue"]>[aria-label="products"]'
|
2019-09-23 14:29:53 +00:00
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|