16 lines
504 B
PHP
16 lines
504 B
PHP
<?php
|
|
class manageMembersPage extends page
|
|
{
|
|
public function __construct($webdriver)
|
|
{
|
|
parent::__construct($webdriver);
|
|
$xpath = array(
|
|
'account' => "//*[@id='account1']/div/input",
|
|
'firstDeleteBtn' => "//*[@id='teamForm']/table/tbody/tr[1]/td[6]/div/button[2]/i",
|
|
/* 运营界面 */
|
|
'saveBtn' => "//*[@id='teamForm']/div/div/button[1]",
|
|
);
|
|
$this->dom->xpath = array_merge($this->dom->xpath, $xpath);
|
|
}
|
|
}
|