检测硒命令
无论如何,我是否可以检测到硒命令,这样我就无法在每个命令之后自动插入屏幕截图命令?我想将其保留在 Javascript 中,因为我正在使用 html 测试脚本。示例:
clickandwait | element |
<-- 有没有办法通过 Javascript 知道它已被触发,所以我添加了
captureentirepagescreenshot | c:\screenshots.jpg |
之后。
Is there anyway I can detect selenium commands so I can't automatically insert a screenshot command after each one? I would like to keep this in Javascript as I am using the html testscripts. Example:
clickandwait | element |
<-- is there a way to know via Javascript that this was fired so I add
captureentirepagescreenshot | c:\screenshots.jpg |
after it.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您是否只想在页面上出现特定元素时才截取屏幕截图?如果是,那么在 Selenium-RC 中的代码将为
您可以在 Selenium-IDE 中尝试
isElementPresent
。我还没有尝试过这个,所以不确定。Do you want to take screenshots only if a prticular element is present on page? If yes, then in Selenium-RC the code will be
You can try
isElementPresent
in Selenium-IDE. I haven't tried this one though, so not sure about it.