znt/module/programplan/test/ui/page/browse.php

14 lines
317 B
PHP

<?php
class browsePage 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);
}
}