Pyhton Selenium

from selenium import webdriver
from time import sleep
chromeOptions = webdriver.ChromeOptions()
chromeOptions.add_argument("--incognito")
chromeOptions.add_argument("--headless")
driver = webdriver.Chrome(chrome_options=chromeOptions)
driver.delete_all_cookies()
driver.get("https://www.trbinance.com/trade/ETH_USDT")
driver.implicitly_wait(7)
while True:
    acılıs = driver.find_element("xpath","/html/body/div[1]/div[1]/div/div[3]/table/tbody/tr[1]/td[2]/div/div[3]/div/div/span[1]").text
    sleep(60)
    print(acılıs)

Veri çekerken şu şekilde bir hata alıyorum

NoSuchElementException: no such element: Unable to locate element: {“method”:“xpath”,“selector”:"/html/body/div[1]/div[1]/div/div[3]/table/tbody/tr[1]/td[2]/div/div[3]/div/div/span[1]"}
(Session info: headless chrome=109.0.5414.75)

Sebebi nedir

from selenium.webdriver.common.by import By
Ekleyip XPATH Kodunu ;

acilis = driver.find_element(By.XPATH,"/html/body/div[1]/div[1]/div/div[3]/table/tbody/tr[1]/td[2]/div/div[3]/div/div/span[1]").text

Bununla deeğiştirip dener misin

dediniz gibi yaptım yine aynı hatayı aldım

acılıs = driver.find_elements(By.XPATH,"/html/body/div[1]/div[1]/div/div[3]/table/tbody/tr[1]/td[2]/div/div[3]/div/div/span[1]").text

elements olarak degiştirdim bu sefer
‘list’ object has no attribute ‘text’
hatası aldım

acilis = driver.find_elements(By.XPATH,"/html/body/div[1]/div[1]/div/div[3]/table/tbody/tr[1]/td[2]/div/div[3]/div/div/span[1]")
for element in acilis:
print(element.text)