B
B
Beko962022-01-12 12:11:12
Python
Beko96, 2022-01-12 12:11:12

(selenium) driver.find_element_by_xpath does not find the required element, what should I do?

Please open and see the URL specified in the code.

Here is the code:

from selenium import webdriver
from selenium.webdriver.chrome.options import Options

options = Options()
options.headless = True

with webdriver.Chrome(executable_path=r'D:\chromedriver.exe', options=options) as driver:
    driver.get(
        url='https://www.sec.gov/ix?doc=/Archives/edgar/data/0000320193/000032019319000076/a10-qq320196292019.htm')

print(driver.find_element_by_xpath('//html/body/div[99]/span').text)


Although this (//html/body/div[99]/span) xpath path definitely exists Selenium doesn't find it,
maybe something is dynamically changing on the page.
In general, how to be? Tell me please.

Answer the question

In order to leave comments, you need to log in

3 answer(s)
S
soremix, 2022-01-12
@SoreMix

Although this (//html/body/div[99]/span) xpath path definitely exists

Why so decided?
Let's try this path together. Opening Opening the 99th But there are only 5 of them. So there is no such
html/body/div[99]/span
XPAth , create a new one, in chrome you can even copy the Xpath through right click html/body
61de9c50bef3c168832644.jpeg
61de9cb490084202222069.jpeg

A
ab1, 2022-01-14
@ab1

Maybe add time.sleep(10) after driver.get
Maybe there are iframes

B
Beko96, 2022-01-16
@Beko96

selenium.common.exceptions.NoSuchElementException: Message: no such element: Unable to locate element: {"method":"xpath","selector":"//html/body/div[99]"
} so i tried sleep(10)

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question