+[task#127642,doing,2h,2h] add browse page file of create projectrelease.

This commit is contained in:
lihuifang
2024-09-03 09:09:21 +08:00
committed by 曹延义
parent c688cfb154
commit 0d9eabe044
+12
View File
@@ -0,0 +1,12 @@
<?php
class browsePage extends page
{
public function __construct($webdriver)
{
parent::__construct($webdriver);
$xpath = array(
'editBtn' => "//*[@id='table-projectrelease-browse']/div[2]/div[3]/div/div/div/nav/a[4]/i",
);
$this->dom->xpath = array_merge($this->dom->xpath, $xpath);
}
}