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

13 lines
316 B
PHP
Executable File

<?php
class kanbanPage extends page
{
public function __construct($webdriver)
{
parent::__construct($webdriver);
$xpath = array(
'settings' => "//*[@id='navbar']//a[@data-id='settings']/span",
);
$this->dom->xpath = array_merge($this->dom->xpath, $xpath);
}
}