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

13 lines
333 B
PHP
Executable File

<?php
class storyPage extends page
{
public function __construct($webdriver)
{
parent::__construct($webdriver);
$xpath = array(
'firstName' => "//*[@id='table-execution-story']/div[2]/div[1]/div/div[2]/div/a",
);
$this->dom->xpath = array_merge($this->dom->xpath, $xpath);
}
}