17 lines
701 B
PHP
17 lines
701 B
PHP
|
|
<?php
|
||
|
|
class batchrunPage extends page
|
||
|
|
{
|
||
|
|
public function __construct($webdriver)
|
||
|
|
{
|
||
|
|
parent::__construct($webdriver);
|
||
|
|
$xpath = array(
|
||
|
|
'modalText' => "//*[@class='modal-content']/div[2]",
|
||
|
|
'pass' => "//*[@id='zin_testtask_batchrun_form']/table/tbody/tr[1]/td[5]/div/div[1]",
|
||
|
|
'fail' => "//*[@id='zin_testtask_batchrun_form']/table/tbody/tr[1]/td[5]/div/div[2]",
|
||
|
|
'blocked' => "//*[@id='zin_testtask_batchrun_form']/table/tbody/tr[1]/td[5]/div/div[3]",
|
||
|
|
'submitBtn' => "//*[@id='zin_testtask_batchrun_form']/div/div/button[1]"
|
||
|
|
);
|
||
|
|
$this->dom->xpath = array_merge($this->dom->xpath, $xpath);
|
||
|
|
}
|
||
|
|
}
|