* [task#128684,0.1h,4.5h] Add xpath.

This commit is contained in:
yulujie
2024-09-20 10:00:41 +08:00
committed by 李阳
parent 98a6a925e3
commit bf7a90a61f
+11
View File
@@ -0,0 +1,11 @@
<?php
class storyPage extends page
{
public function __construct($webdriver)
{
parent::__construct($webdriver);
$xpath = array(
);
$this->dom->xpath = array_merge($this->dom->xpath, $xpath);
}
}