UNPKG

wc-e2e-page-objects

Version:

WooCommerce Page Objects to be used on end-to-end tests with Selenium WebDriver

14 lines (11 loc) 329 B
/** * External dependencies */ import { By } from 'selenium-webdriver'; import { Component } from 'wp-e2e-page-objects'; const PAGINATION_SELECTOR = By.css( '.woocommerce-pagination' ); export default class ComponentProductsPagination extends Component { constructor( driver ) { super( driver, PAGINATION_SELECTOR ); } }