作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在使用 PHPUnit 3.4.12 来驱动我的 selenium 测试。我希望能够在测试失败时自动截取屏幕截图。这应该得到支持,如 http://www.phpunit.de/manual/current/en/selenium.html#selenium.seleniumtestcase.examples.WebTest2.php 所述
class WebTest
{
protected $captureScreenshotOnFailure = true;
protected $screenshotPath = 'C:\selenium';
protected $screnshotUrl = 'http://localhost/screenshots';
public function testLandingPage($selenium)
{
$selenium->open("http://www.example.com");
$selenium->fail("fail");
...
}
}
[root@testbox selenium]$ sh run
PHPUnit 3.4.12 by Sebastian Bergmann.
F
Time: 8 seconds, Memory: 5.50Mb
There was 1 failure:
1) WebTest::testLandingPage
fail
/home/root/selenium/WebTest.php:32
FAILURES!
Tests: 1, Assertions: 0, Failures: 1.
最佳答案
phpunit 的错误处理很差;如果一切都不完美,它会在没有警告的情况下默默地忽略您的其他选项。
正如 Dave 所提到的,如果任何变量拼写错误,它将默默地不起作用,您也可以尝试将它们分配给 setUp 中的实例。
此外,并非每个条件都会触发屏幕截图。尝试 $selenium->assertTextPresent("foobarbaz") 而不是 $selenium->fail() 进行健全性检查。
关于selenium - PHPUnit Selenium captureScreenshotOnFailure 不起作用?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2847048/
我一辈子都无法使用这些屏幕截图: 目录存在 测试按预期执行(并失败) 我正在使用 Firefox (14.1) 阅读文档(只有几段) 我已经阅读了我能找到的所有内容: http://www.devin
我正在使用 PHPUnit 3.4.12 来驱动我的 selenium 测试。我希望能够在测试失败时自动截取屏幕截图。这应该得到支持,如 http://www.phpunit.de/manual/cu
我是一名优秀的程序员,十分优秀!