gpt4 book ai didi

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

转载 作者:行者123 更新时间:2023-12-04 09:35:49 26 4
gpt4 key购买 nike

我正在编写一个测试,它会遍历多个页面,然后验证标题是否正在显示。目前我的测试是在我可以点击一个按钮并打开一个报告的地方。问题是报告在新选项卡中打开,所以我需要我的测试来移动选项卡并验证新选项卡中的标题。
需要验证的标题是“估值”。我做了一个断言来确认标题和我预期的一样
我已经用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) 是期望打开一个新窗口并增加窗口句柄的数量。

示范
以下示例打开 URL http://www.google.co.in先打开网址https://www.yahoo.com在相邻的选项卡中:

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])

Note: The argument passed to new_window_is_opened(current_handles) is a list. In order to create a list we need to use windows_before = driver.window_handles



这个用例
在您的代码块中,预计当您:
current = self.driver.current_window_handle
只有一个窗口句柄。所以继续前进,代码行:
wait(self.driver, 10).until(EC.new_window_is_opened(self.driver.window_handles))
将等待打开一个新窗口并增加窗口句柄的数量,并且只有在执行打开一个新窗口的操作后才会发生这种情况,这似乎从您的代码块中丢失。

解决方案
插入启动新 的打开的代码行:
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)

Note: As per the lines of code you have updated within your comments you are not using Python class, so you shouldn't use the keyword self.

关于python - 如何使用预期条件 new_window_is_opened 切换选项卡并使用 Selenium 和 Python 验证页面标题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62596788/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com