I am scraping some data from this link https://www.vbgov.com/property-search#DetailView=14760123360000. But i am unable to simulate click event on "Sales History & Tax Information" tab using webdriver Selenium and python.
driver.get("https://www.vbgov.com/property-search#")
searchBox1 = driver.find_element_by_id("consolidated-search-query")
searchBox1.send_keys("1124 LUKE DR")
searchBox1.send_keys(Keys.ENTER)
driver.implicitly_wait(5)
link = driver.find_element_by_xpath('//*[@id="property"]/tbody/tr/td[2]/a')
link.click()
elem = driver.find_element_by_xpath('//*[@id="property-counts"]/h4')
tab = driver.find_element_by_partial_link_text("Sales History & Tax Information")
tab.click()
find_element_by_partial_link_text()raising an error? Isclick()? Or is it simply that nothing appears to happen in the browser?