I am gathering sports fixtures and results on the webpage, first of all, I am going to use Pandas to scrape, however, there is an option for selecting "timezone" on the page, so I add slenium for the auto-choosing timezone, therefore I do not know how to scrape with pandas after I use slenium. Would everybody please do me a favour, thank you very much.
here is my work:
from selenium import webdriver
from selenium.webdriver.support.ui import Select
import pandas as pd
PATH ="C:/Users/XXX/Desktop/chromedriver.exe"
driver = webdriver.Chrome( PATH )
driver.get("https://fixturedownload.com")
select = Select(driver.find_element_by_name("timezone"))
select.select_by_value("SE Asia Standard Time" )
driver.find_element_by_xpath('/html/body/div[2]/div/div[2]/form/div/input[1]').click()
List = pd.read_html(I am stuck here)