Here is the website: https://seekingalpha.com/news/3580581-docusign-eps-beats-0_02-beats-on-revenue
I am trying to webscrape the EPS, EPS beat, GEPS GEPS beat, and revenue revenue beat.
List1 = driver.find_element_by_xpath("""/html/body/div[2]/div[1]/div/main/div[2]/div[3]/div[2]/section[1]/div/div/div[3]/div/div/div[1]/ul/li[1]/text()[2]""")
This returns unable to locate element.
Also this does not work
List1 = driver.find_element_by_xpath("""/html/body/div[2]/div[1]/div/main/div[2]/div[3]/div[2]/section[1]/div/div/div[3]""")
I don't think it is due to the website being loaded. I put time.sleep to be 10 seconds and it also did not work. I am not sure how I navigate through the website to get to the list that has the information I want.