13 lines
315 B
PHP
13 lines
315 B
PHP
<?php
|
|
class editPage extends page
|
|
{
|
|
public function __construct($webdriver)
|
|
{
|
|
parent::__construct($webdriver);
|
|
$xpath = array(
|
|
'savebtn' => "/html/body/div[1]/div/div/form/div[2]/button[1]",
|
|
);
|
|
$this->dom->xpath = array_merge($this->dom->xpath, $xpath);
|
|
}
|
|
}
|