I am trying to use click command in Selenium webdriver using python. But I am getting the below error. Can some one help me?
Traceback (most recent call last
if you want single element so u can use:
driver.find_element_by_link_text("MISCQA Misc Tests")
or if you want whole list, then:
for x in self.driver.find_elements_by_link_text("MISCQA Misc Tests"): link = webdriver.ActionChains(self.driver).move_to_element(x).click(x).perform()