为了自动化我的测试应用程序,我需要在新窗口中打开几个链接而不是tab。请记住,我没有明确地打开新标签中的链接,这是我的网络应用程序,它在点击链接后自动将用户放在新标签中。
我为什么要这样做?
因为在Chrome浏览器上运行测试会关闭主选项卡并保持打开新打开的选项卡。最终未通过测试。所以最终目的是打开新窗口而不是制表符并使用driver.getWindowHandles()
正确处理它。
到目前为止我做了什么?
我试图在Chrome中找到某种功能设置或配置文件,它会在新窗口中自动打开链接,这些链接应该在选项卡中打开。但是没有找到任何令人信服的解决方案,大多数建议都是CTRL +点击链接。
我不是网页设计的大师,但我可以建议以下场景:
// Get required page
// Excecute below JavaScript with JavaScriptExecutor
var reference = document.querySelector('a#someID').getAttribute('href'); // You can use your specific CSS Selector instead of "a#someID"
document.querySelector('a#someID').setAttribute("onclick", "window.open('" + reference + "', '', 'width=800,height=600')")
document.querySelector('a#someID').removeAttribute('href')
// Find target link
// Click on it
此代码应允许您在目标web元素的HTML
源代码中进行更改,以强制在新的浏览器窗口中打开它。
请注意,使用此代码元素的页面外观将更改,直到页面刷新
附:你没有提到你的编程语言,所以没有完整的实现......但是,这是Python
实现示例:
from selenium import webdriver as web
dr = web.Chrome()
dr.get('https://login.live.com/login.srf?&wreply=https%3a%2f%2foutlook.live.com%2fowa%2f%3fnlp%3d1%26realm%3dlogin.live.com')
dr.execute_script("""
var reference = document.querySelector('a#ftrTerms').getAttribute('href');
document.querySelector('a#ftrTerms').setAttribute("onclick", "window.open('" + reference + "', '', 'width=800,height=600')")
document.querySelector('a#ftrTerms').removeAttribute('href')
""")
link = dr.find_element_by_id('ftrTerms')
link.click()
好吧,如果Chrome浏览器没有任何标记/设置/功能,在新窗口中打开链接而不是新标签,我通过WebDriver使用Chrome扩展程序。
我为什么这样做?
因为我的测试在Firefox上运行良好,我不知道套件中有多少WebElements在Chrome浏览器的新标签页中打开。该套件也非常庞大,因此对其核心页面类进行任何更改都可能会破坏所有测试。除此之外,在元素级别更改代码将非常耗时,最重要的是不是通用解决方案。
我做了什么?
ChromeOptions options = new ChromeOptions();
options.addExtensions(new File("pathOfCRXFile"));
DesiredCapabilities capabilities = DesiredCapabilities.chrome();
capabilities.setCapability(ChromeOptions.CAPABILITY, options);
WebDriver driver = new ChromeDriver(capabilities);
因此,上面会将所有新选项卡转换为新窗口。因此,只要驱动程序单击任何在新选项卡中进一步打开的链接,就会打开新窗口。