D | web_driver_core_helpers.py | 37 def _handle_alert(self, xpath, alert_handler): argument 45 self.driver.find_element_by_xpath(xpath) 55 self._handle_alert(xpath, alert_handler) 127 for xpath in xpaths: 129 element = self.wait_for_object_by_xpath(xpath, 132 return xpath 147 xpath = 'id("%s")' % element_id 148 return self.click_button_by_xpath(xpath, alert_handler) 151 def click_button_by_xpath(self, xpath, alert_handler=None): argument 159 button = self.wait_for_object_by_xpath(xpath) [all …]
|