Jul-30-2020, 10:55 PM
I am looking to download the tables in this URL for different selections like Crude, Oil etc using Python but I am a beginner and I tried using Selenium to get the table but I don't know how to export this format to a file like excel or csv. I am not even sure if this is the correct approach.
http://www.jodidb.org/TableViewer/tableV...rtId=93904
Below is my code so far
Any help is appreciated.
http://www.jodidb.org/TableViewer/tableV...rtId=93904
Below is my code so far
1 2 3 4 5 6 7 8 |
from selenium import webdriver import chromedriver_binary import pandas as pd driver = webdriver.Chrome() elem = driver.find_element_by_class_name( 'ExplorerContentPane' ).click() |