Files
EasySoft-ZenTaoPMS/module/execution/test/ui/page/all.php
T

13 lines
299 B
PHP
Executable File

<?php
class allPage extends page
{
public function __construct($webdriver)
{
parent::__construct($webdriver);
$xpath = array(
'firstCheckbox' => "(//*[@data-col='rawID'])[2]",
);
$this->dom->xpath = array_merge($this->dom->xpath, $xpath);
}
}