When I try to get information it returns empty list. If I write different class such as 'tr-indent2' or something it returns value in a bad format which means it can take data but not for every class.
liste=[]
linkss=['https://ClinicalTrials.gov/show/NCT05768724','https://ClinicalTrials.gov/show/NCT05768607']
for data in linkss:
path=r"C:\Users\kaant\Downloads\chromedriver.exe"
service=Service(executable_path=path)
options = uc.ChromeOptions()
options.headless = True
driver = uc.Chrome()
driver.get(data)
time.sleep(5)
infos=driver.find_elements(By.CLASS_NAME, value="ct-layout_table tr-tableStyle tr-moreInfo")
c=[]
for info in infos:
c.append(info.text)
liste.append(c)
driver.quit()
How can I get this class? Thanks