Selenium 中 testComplete() 命令的用途是什么?
我无法找出 Selenium 中 testComplete()
函数的用途,以及 testComplete()
和 end()
之间的区别> 是。
还有另一个名为 TestComplete 的测试框架绝对没有帮助......有关它的搜索结果完全被污染了:)
谢谢。
I can't find out what's the purpose of the testComplete()
function in Selenium, and what the difference between testComplete()
and end()
is.
It definitely doesn't help that there is another test framework called TestComplete...search results about it are completely polluted :)
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
selenium 中不再有 testComplete() 函数。它存在于旧版本的 selenium-rc 协议中,但在 2006 年协议更新后被删除。请参阅源代码历史记录,修订版 931:
http://svn.openqa.org/fisheye/browse/selenium-rc/trunk/clients/java/src/main/java/com/thoughtworks/selenium/DefaultSelenium.java#btrunk
我不知道不记得 selenium 中是否存在 end() 函数。相反,有函数 close() - 关闭浏览器窗口,和 stop() - 完成远程会话。
There is no more testComplete() function in selenium. It existed in old version of selenium-rc protocol, but was removed after protocol update in 2006. See source code history, revision 931:
http://svn.openqa.org/fisheye/browse/selenium-rc/trunk/clients/java/src/main/java/com/thoughtworks/selenium/DefaultSelenium.java#btrunk
I don't remember if end() function ever existed in selenium. Instead, there are functions close() - to close browser window, and stop() - to finish remote session.