I want to scrape the data from the table that is dynamically loaded inside this website.
I have tried the requests and selenium package in Python but seems like I have not implemented the right way.
driver = webdriver.Chrome()
driver.get(http://live.xacte.com/lamarathon/)
element = driver.find_element(by=By.ID, value= 'xact_results_tabs_results')
I can't find the source of the data in the html file when I download too.
Please help me to look into the website and advice me what to do to scrape this data. Thank you!
This should be enough to get you started. This just dumps all the text contents of each row as comma separated values.