tüm sekmeleri sırasıyla tıklayıp altında açılan tablolardaki textleri listeye yazdırmak istiyorum ancak kodu çalıştırdığımda aşağıdaki hatayı alıyorum nedenini çözemedim.
selenium.common.exceptions.ElementClickInterceptedException: Message: element click intercepted: Element <td class="dxeListBoxItem_Material" id="ctl00_ContentPlaceHolder1_ASPxPageControl1_cbGalopIstatistikMesafe_DDD_L_LBI0T0">...</td> is not clickable at point (358, 220). Other element would receive the click: <div class="dxh-content">...</div>
driver.find_element_by_xpath("//img[@id='ctl00_ContentPlaceHolder1_ASPxPageControl1_cbGalopIstatistikMesafe_B-1Img']").click()
sleep(4)
TABLO=[]
for i in range(0,6):
driver.find_element_by_xpath("//td[@id='ctl00_ContentPlaceHolder1_ASPxPageControl1_cbGalopIstatistikMesafe_DDD_L_LBI{}T0']".format(i)).click()
sleep(4)
tablo = driver.find_elements_by_xpath("//tr[contains(@id,'ctl00_ContentPlaceHolder1_ASPxPageControl1_grdGalopIstatistik_DXDataRow')]//descendant::td")
for i in tablo:
TABLO.append(i.text)
tablo_duzenleme=[TABLO[x:x+10] for x in range(0, len(TABLO), 10)]
print(tablo_duzenleme)