(self, selector=None, xpath=None)
| 176 | return self.element_exists('[aria-label="%s"]' % (label)) |
| 177 | |
| 178 | def click(self, selector=None, xpath=None): |
| 179 | self.element(selector, xpath=xpath).click() |
| 180 | |
| 181 | def click_when_visible(self, selector=None, xpath=None, timeout=3): |
| 182 | """ |