znt/module/testcase/test/ui/page/view.php

14 lines
315 B
PHP
Executable file

<?php
class viewPage extends page
{
public function __construct($webdriver)
{
parent::__construct($webdriver);
$xpath = array(
'caseNameView' => "(//div[@id='mainContent']//span[text()])[3]"
);
$this->dom->xpath = array_merge($this->dom->xpath, $xpath);
}
}