* [task#127263,doing,0.5h,4.5h] Add xpath of ui test to manage members.

This commit is contained in:
yulujie
2024-09-05 08:49:17 +08:00
committed by 李阳
parent f57df0beb5
commit 7cd1b18634
+12
View File
@@ -0,0 +1,12 @@
<?php
class managemembersPage extends page
{
public function __construct($webdriver)
{
parent::__construct($webdriver);
$xpath = array(
'account' => "//div[@id='teamForm']//input[@name='account[2]']",
);
$this->dom->xpath = array_merge($this->dom->xpath, $xpath);
}
}