+[task#127645,doing,5h,3.5h] Add members page file of project managemembers.

This commit is contained in:
lihuifang
2024-09-06 08:55:36 +08:00
committed by 李阳
parent 9d1e384eaa
commit e4d4ce7c6f
@@ -0,0 +1,13 @@
<?php
class manageMembersPage extends page
{
public function __construct($webdriver)
{
parent::__construct($webdriver);
$xpath = array(
'account' => "//*[@id='account1']/div/span[1]",
'firstDeleteBtn' => "//*[@id='teamForm']/table/tbody/tr[1]/td[6]/div/button[2]/i",
);
$this->dom->xpath = array_merge($this->dom->xpath, $xpath);
}
}