15 lines
484 B
PHP
15 lines
484 B
PHP
<?php
|
|
class createPage extends page
|
|
{
|
|
public function __construct($webdriver)
|
|
{
|
|
parent::__construct($webdriver);
|
|
$xpath = array(
|
|
'createBuildBtn' => "//span[@class='input-group-addon']/a[@id='buildCreateLink']",
|
|
'refreshBtn' => "//span[@class='input-group-addon']/a[@class='refresh']",
|
|
'submitBtn' => "//button[@type='submit']"
|
|
);
|
|
$this->dom->xpath = array_merge($this->dom->xpath, $xpath);
|
|
}
|
|
}
|