15 lines
364 B
PHP
15 lines
364 B
PHP
|
|
<?php
|
||
|
|
class createPage extends page
|
||
|
|
{
|
||
|
|
public function __construct($webdriver)
|
||
|
|
{
|
||
|
|
parent::__construct($webdriver);
|
||
|
|
$xpath = array(
|
||
|
|
'caseNameList' => "//a[contains(text(),'testcase')]",
|
||
|
|
'saveButton' => "//button[@type = 'submit']"
|
||
|
|
);
|
||
|
|
|
||
|
|
$this->dom->xpath = array_merge($this->dom->xpath, $xpath);
|
||
|
|
}
|
||
|
|
}
|