Selenium 2: Open link in new tab and close tabs(Selenium 2:在新标签中打开链接并关闭标签)
问题描述
我希望能够在 Selenium 2 的新选项卡中打开一个链接.我还想在完成与页面的交互后关闭该选项卡.如果我有一个 <a>
标签的 WebElement
,这怎么可能?
I want to be able to open a link in a new tab in Selenium 2. Also i want to close the tab when i am finished interacting with the page. How is this possible if I have a WebElement
of an <a>
tag?
我正在使用 Selenium 2 的 Java API 和 Firefox 驱动程序,在 Firefox 4 上运行.
I am using the Java API of Selenium 2 with the Firefox Driver, running on Firefox 4.
推荐答案
目前,Selenium WebDriver API 没有任何处理选项卡的方法.该项目确实需要一套一致的、跨浏览器的方法来管理选项卡,然后我才会期望看到一种语言绑定(如 Java)的实现.在那之前,您的 JavaScript 解决方案可能是唯一的方法,请记住,您的代码将负责管理该选项卡的生命周期.
At the moment, the Selenium WebDriver API doesn't have any way of handling tabs. The project would really need a consistent, cross-browser set of methods for managing tabs before I would expect to see an implementation in one of the language bindings like Java. Until then, your JavaScript solution may be the only way, and remember that your code would then be responsible for managing the lifetime of that tab.
这篇关于Selenium 2:在新标签中打开链接并关闭标签的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:Selenium 2:在新标签中打开链接并关闭标签
- C++ 和 Java 进程之间的共享内存 2022-01-01
- 从 finally 块返回时 Java 的奇怪行为 2022-01-01
- Jersey REST 客户端:发布多部分数据 2022-01-01
- value & 是什么意思?0xff 在 Java 中做什么? 2022-01-01
- Java包名称中单词分隔符的约定是什么? 2022-01-01
- 将log4j 1.2配置转换为log4j 2配置 2022-01-01
- Eclipse 插件更新错误日志在哪里? 2022-01-01
- Safepoint+stats 日志,输出 JDK12 中没有 vmop 操作 2022-01-01
- 如何使用WebFilter实现授权头检查 2022-01-01
- Spring Boot连接到使用仲裁器运行的MongoDB副本集 2022-01-01