+ [task#137219,done,0.2h] add xpath of editstage page.

This commit is contained in:
huairong
2025-02-14 10:35:08 +08:00
committed by xieqiyu
parent 27cdaf4865
commit a6496fbae6
+14
View File
@@ -0,0 +1,14 @@
<?php
class editPage extends page
{
public function __construct($webdriver)
{
parent::__construct($webdriver);
$xpath = array(
'submitBtn' => "//*[@id='zin_stage_edit_1_form']/div[4]/div/button/span",
'plusSubmitBtn' => "//*[@id='zin_stage_edit_7_form']/div[4]/div/button",
'percentOverTip' => "//*[@id='percentTip']",
);
$this->dom->xpath = array_merge($this->dom->xpath, $xpath);
}
}