How to click an element which is loaded through Ajax through webdriver within Chrome
问题 Browser : Chrome V65 ChromeDriver: chromedriver.exe 2.37 Error occurs while webdriver trying to click an element. The below is my click(): def click(self): try: self.wait_for().visible() self._selenium_context().click() except Exception as e: raise NoSuchElementException def visible(self): ''' Check if the element is visible. :return: True or exception. ''' return Utils.wait_for(self.web_element.visible, self.interval, self.timeout) I had already waited for element visible and then clicked.