How to find the x path of an element when the python selenium script clicks a button which in turn opens in a new window (element is in new window)

huangapple go评论104阅读模式
英文:

How to find the x path of an element when the python selenium script clicks a button which in turn opens in a new window (element is in new window)

问题

The python(selenium) script fails when a new chrome window opens upon clicking a button. I have passed the x-path of the element from the new window(extracted the x-path manually) in my script. The script runs and fails with an error selenium.common.exceptions.NoSuchElementException: Message: no such element: Unable to locate element: {"method":"xpath","selector":"//*[@id="3131"]"}

如何解决这个问题?

期望有一种方法将脚本传递到新打开的窗口并找到我打算定位的元素的 x-path。

英文:

The python(selenium) script fails when a new chrome window opens upon clicking a button. I have passed the x-path of the element from the new window(extracted the x-path manually) in my script. The script runs and fails with an error selenium.common.exceptions.NoSuchElementException: Message: no such element: Unable to locate element: {"method":"xpath","selector":"//*[@id="3131"]"}

How can I resolve this issue ?

Expecting a method to pass the script to newly opened window and find the x-path of the element I intent to locate

答案1

得分: 2

以下是翻译好的部分:

Python:

  1. from selenium import webdriver
  2. from selenium.webdriver.support.ui import WebDriverWait
  3. from selenium.webdriver.support import expected_conditions as EC
  4. with webdriver.Firefox() as driver:
  5. # 打开URL
  6. driver.get("https://seleniumhq.github.io")
  7. # 设置等待
  8. wait = WebDriverWait(driver, 10)
  9. # 存储原始窗口的ID
  10. original_window = driver.current_window_handle
  11. # 检查是否已经打开其他窗口
  12. assert len(driver.window_handles) == 1
  13. # 单击打开在新窗口中的链接
  14. driver.find_element(By.LINK_TEXT, "new window").click()
  15. # 等待新窗口或选项卡
  16. wait.until(EC.number_of_windows_to_be(2))
  17. # 循环查找新窗口句柄
  18. for window_handle in driver.window_handles:
  19. if window_handle != original_window:
  20. driver.switch_to.window(window_handle)
  21. break
  22. # 等待新标签页完成加载内容
  23. wait.until(EC.title_is("SeleniumHQ Browser Automation"))
英文:

The selenium documentation shows how to switch to a new window quite well and once you switched to the new window you just work as if you were in the main window.

Python:

  1. from selenium import webdriver
  2. from selenium.webdriver.support.ui import WebDriverWait
  3. from selenium.webdriver.support import expected_conditions as EC
  4. with webdriver.Firefox() as driver:
  5. # Open URL
  6. driver.get("https://seleniumhq.github.io")
  7. # Setup wait for later
  8. wait = WebDriverWait(driver, 10)
  9. # Store the ID of the original window
  10. original_window = driver.current_window_handle
  11. # Check we don't have other windows open already
  12. assert len(driver.window_handles) == 1
  13. # Click the link which opens in a new window
  14. driver.find_element(By.LINK_TEXT, "new window").click()
  15. # Wait for the new window or tab
  16. wait.until(EC.number_of_windows_to_be(2))
  17. # Loop through until we find a new window handle
  18. for window_handle in driver.window_handles:
  19. if window_handle != original_window:
  20. driver.switch_to.window(window_handle)
  21. break
  22. # Wait for the new tab to finish loading content
  23. wait.until(EC.title_is("SeleniumHQ Browser Automation"))

huangapple
  • 本文由 发表于 2023年3月1日 12:59:17
  • 转载请务必保留本文链接:https://go.coder-hub.com/75599734.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定