我正在尝试自动化涉及两个没有通用基本 URL 的网站的用户场景。我怎样才能做到这一点?现在我没有成功尝试更改全局变量,但每次测试都会重置它们。
public $check = true;
protected function setUp() {
$this->setBrowser("*googlechrome");
if ($this->check==true)
$this->setBrowserUrl("SITE A");
else
$this->setBrowserUrl("SITE B");
$this->setPort(4444);
$this->setHost("0.0.0.0");
}
public testA() { //requires SITE A, set check to false }
public testB() { //requires SITE B }