繁体   English   中英

如何使用预期条件 new_window_is_opened 切换选项卡并使用 Selenium 和 Python 验证页面标题

[英]How to switch tabs using the expected conditions new_window_is_opened and verify the page title using Selenium and Python

我正在编写一个测试,它会遍历多个页面,然后验证标题是否正在显示。 目前我的测试是在我可以点击一个按钮并打开一个报告的地方。 问题是报告在新选项卡中打开,所以我需要我的测试来移动选项卡并验证新选项卡中的标题。

需要验证的标题是“估值”。 我做了一个断言来确认标题和我预期的一样

我在 python 中编写了以下代码。 它目前在第二行等待失败

current = self.driver.current_window_handle
wait(self.driver, 10).until(EC.new_window_is_opened(self.driver.window_handles))
self.driver.switch_to.window([w for w in self.driver.window_handles if w != current][0])
title = self.driver.title
self.assertTrue("Valuation" == self.driver.title)

我正在使用以下代码行打开一个新选项卡:

element = driver.find_element_by_xpath("//input[@id='save' and @name='save'][@value='View Report']") 
driver.execute_script("arguments[0].click();", element)

new_window_is_opened(current_handles)

new_window_is_opened(current_handles)是期望打开一个新的 window 并增加 windows 句柄的数量。


示范

The following example opens the url http://www.google.co.in first and then opens the url https://www.yahoo.com in the adjacent tab:

from selenium import webdriver
from selenium.webdriver.support.ui import WebDriverWait
from selenium.webdriver.support import expected_conditions as EC

options = webdriver.ChromeOptions() 
options.add_argument("start-maximized")
driver = webdriver.Chrome(options=options, executable_path=r'C:\WebDrivers\chromedriver.exe')
driver.get("http://www.google.co.in")
windows_before  = driver.window_handles
driver.execute_script("window.open('https://www.yahoo.com')")
WebDriverWait(driver, 20).until(EC.new_window_is_opened(windows_before))
driver.switch_to.window([x for x in driver.window_handles if x not in windows_before][0])

注意:传递给new_window_is_opened(current_handles)的参数是一个列表。 为了创建一个列表,我们需要使用windows_before = driver.window_handles


这个用例

在您的代码块中,预计当您:

current = self.driver.current_window_handle

仅存在一个 window 手柄。 所以继续前进,代码行:

wait(self.driver, 10).until(EC.new_window_is_opened(self.driver.window_handles))

将等待打开新的 window 并增加 windows 句柄的数量,并且仅在执行打开新 window 的操作后才会发生,这似乎从您的代码块中丢失。


解决方案

插入启动新打开的代码行:

from selenium import webdriver
from selenium.webdriver.support.ui import WebDriverWait
from selenium.webdriver.support import expected_conditions as EC

windows_before  = driver.window_handles
element = driver.find_element_by_xpath("//input[@id='save' and @name='save'][@value='View Report']")
driver.execute_script("arguments[0].click();", element)
WebDriverWait(self.driver, 10).until(EC.new_window_is_opened(windows_before))
driver.switch_to.window([x for x in driver.window_handles if x not in windows_before][0])
assertTrue("Valuation" == driver.title)

注意:根据您在评论中更新的代码行,您没有使用Python class ,因此您不应使用关键字self

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM