Organize a little the test to avoid timing bugs.
這個提交存在於:
父節點
0130e33c82
當前提交
42eb4c2a70
共有 1 個檔案被更改,包括 11 行新增 和 9 行删除
|
@ -137,23 +137,25 @@ class Cops extends Sauce\Sausage\WebDriverTestCase
|
|||
$search = $this->byName ("query");
|
||||
$this->assertTrue ($search->displayed ());
|
||||
}
|
||||
|
||||
|
||||
public function testFilter()
|
||||
{
|
||||
// Click on the wrench to enable tag filtering
|
||||
$this->byClassName ("icon-wrench")->click ();
|
||||
|
||||
$this->byId ("html_tag_filter")->click ();
|
||||
|
||||
// Go back to home screen
|
||||
$this->byClassName ("icon-home")->click ();
|
||||
|
||||
$driver = $this;
|
||||
$title_test = function($value) use ($driver) {
|
||||
$text = $driver->byXPath('//h1')->text ();
|
||||
return $text == $value;
|
||||
};
|
||||
|
||||
// Click on the wrench to enable tag filtering
|
||||
$this->byClassName ("icon-wrench")->click ();
|
||||
|
||||
$this->byId ("html_tag_filter")->click ();
|
||||
|
||||
// Go back to home screen
|
||||
$this->byClassName ("icon-home")->click ();
|
||||
|
||||
$this->spinAssert("Home Title", $title_test, [ "COPS DEMO" ]);
|
||||
|
||||
// Go on the recent page
|
||||
$author = $this->byXPath ('//h2[contains(text(), "Recent")]');
|
||||
$author->click ();
|
||||
|
|
載入中…
新增表格
Add a link
新增問題並參考