我想测试一个网站,具有动态menustructure。 我想通过所有的菜单项循环,并运行在每一页上同一系列的测试。 我们谈论的是100页以上是reguraly改变。
我想与任何贝哈特或codeception做到这一点。
有谁知道如何做到这一点的想法?
我想测试一个网站,具有动态menustructure。 我想通过所有的菜单项循环,并运行在每一页上同一系列的测试。 我们谈论的是100页以上是reguraly改变。
我想与任何贝哈特或codeception做到这一点。
有谁知道如何做到这一点的想法?
当使用贝哈特与水貂,你可以抓住用的findAll您的菜单项(),然后遍历它:
/**
* @When /^I run my test series for all menu items$/
*/
public function iRunMyTestSeriesForAllMenuItems() {
$result = TRUE;
$this->getSession()->visit('http://www.example.com/');
$links = $this->getSession()->getPage()->findAll('css', '#menu ul li a');
foreach ($links as $link) {
$url = $link->getAttribute('href');
if (FALSE === $this->yourTestHere($url)) {
$result = FALSE;
}
}
return $result;
}
我有,我想访问某个网站地图制作的所有页面确保没有任何死链接类似的使用情况。 我不得不动态生成的 ,然后返回并通过贝哈特处理步骤的阵列的方法。 我不得不添加人工一步“我打印页”,以确保我能有什么网页,目前测试的控制台上看到的。
/**
* @Then /^I should access all pages of site map "([^"]*)"$/
*/
public function iShouldAccessAllPagesOfSiteMap($selector) {
$page = $this->getSession()->getPage();
$locator = sprintf('#%s a', $selector);
$elements = $page->findAll('css', $locator);
$steps = array();
foreach ($elements as $element) {
/** @var \Behat\Mink\Element\NodeElement $element */
$steps[] = new Behat\Behat\Context\Step\When(sprintf('I print out page "%s"', $element->getAttribute('href')));
$steps[] = new Behat\Behat\Context\Step\When(sprintf('I go to "%s"', $element->getAttribute('href')));
$steps[] = new Behat\Behat\Context\Step\Then('the response status code should be 200');
}
return $steps;
}
/**
* @When /^I print out page "([^"]*)"$/
*/
public function iPrintOutThePage($page) {
$string = sprintf('Visiting page ' . $page);
echo "\033[36m -> " . strtr($string, array("\n" => "\n| ")) . "\033[0m\n";
}
然后,我的情况如下所示:
Scenario: my website has no "dead" pages
Given I am on "/examples/site-map/"
Then I should access all pages of site map "c118"
整个要点是这里https://gist.github.com/fudriot/6028678