I can't find this location web scraping

Viewed 18

Hello I can't find the xpath address, css selector to extract the value of MA 30 from the page, how can I locate to take that value in real time?

enter image description here [1]: https://i.stack.imgur.com/Pb5MG.jpg

My code is :

s=Service("/Users/germaconil/Downloads/chromedriver")
driver = webdriver.Chrome(service=s)
bucle = False
driver.get("https://bingx.com/es-es/futures/forward/BTCUSDT/")
time.sleep(8)
mediaMovil =driver.find_element(By.XPATH, "//html/body/div[2]/div[1]/div[2]/div[1]/div[2]/table/tr[1]/td[2]/div/div[1]/div[2]/div[2]/div[3]/div[3]/div/div/div")
print(mediaMovil)
0 Answers
Related