I want to return all the values in the MeSH column at this link: https://ii.nlm.nih.gov/cgi-bin/II/Interactive/checkPubMed.pl. The link doesn't store the search results so to get to the actual link, go here https://ii.nlm.nih.gov/Interactive/MTI/phrase2mesh.shtml and search "baculovirus" and press submit.
driver.get('https://ii.nlm.nih.gov/Interactive/MTI/phrase2mesh.shtml')
#excluded code here but basically input "baculovirus" into the search bar and search
#brings you to this link https://ii.nlm.nih.gov/cgi-bin/II/Interactive/checkPubMed.pl
table = WebDriverWait(driver,10).until(EC.presence_of_element_located((By.TAG_NAME,"table")))
for row in table(3): #to get the third column of the table
print(row.text)
Not sure how to move forward, any help would be appreciated!