15 lines
366 B
PHP
Executable file
15 lines
366 B
PHP
Executable file
<?php
|
|
class reportPage extends page
|
|
{
|
|
public function __construct($webdriver)
|
|
{
|
|
parent::__construct($webdriver);
|
|
$xpath = array(
|
|
'selectAll' => "//button[@data-call='selectAll']",
|
|
'clickInit' => "//button[@data-call='clickInit']"
|
|
);
|
|
|
|
$this->dom->xpath = array_merge($this->dom->xpath, $xpath);
|
|
}
|
|
}
|