我正在尝试运行一个在运行时打开一个新窗口的测试我的主应用程序中有一个按钮,它打开一个新窗口,我尝试使用的名称不同:
desired_caps["app"] = 'myappname'
driver = webdriver.Remote(
command_executor='http://127.0.0.1:4723',
desired_capabilities= desired_caps)
driver.find_element_by_name("OK").click()
#after click on this a new window opens with this name, "Confirmation"
driver.switch_to_window("Confirmation")
我也尝试用不同的方式写:
webdriver.switch_to.SwitchTo.window(self,"Confirmation")
谁能帮我这个?