def wait_spinner(self): """Wait until there is no longer spinner visible.""" xhr.wait_xhr(10) time.sleep(0.2) timeout = 15 start = time.time() xpath = '//img[@alt="Loading..."]' found = False while time.time() - start < timeout: try: webelements = element.get_webelements(xpath) except Exception: continue if webelements: if not found: found = True logger.info('Found spinner(s)') else: if found: logger.info('No more spinners visible.') else: logger.info('Page did not contain spinners.') xhr.wait_xhr(10) return raise AssertionError('Spinner was visible after {}s'.format(timeout))
def get_element_count(locator, timeout=0, **kwargs): # pylint: disable=unused-argument r"""Get count of appearances for certain web element. Keyword waits until timeout has passed. If timeout is not specified, it uses default timeout that can be adjusted with DefaultTimeout keyword. GetTextCount does not require for the text to be unique. Examples -------- .. code-block:: robotframework ${COUNT} GetElementCount //*[@id\="Foo"] ${COUNT} GetElementCount Foo tag=div Parameters ---------- locator : str Xpath or some attribute value of element. When using XPaths, the equal sign "=" must be escaped with a "\". timeout : str | int How long we try to find text before failing. Default 10 (seconds) Accepted kwargs: tag=tagname: Needed when attribute value is used as a locator """ kwargs['element_kw'] = True if 'tag' in kwargs: web_elements = element.get_elements_by_attributes( kwargs.get('tag'), locator, **kwargs) else: web_elements = element.get_webelements(locator, **kwargs) if web_elements: return len(web_elements) raise QWebElementNotFoundError('Webelements not found')
def verify_no_element(xpath, timeout=0, **kwargs): # pylint: disable=unused-argument r"""Wait element can not be found on the page. Examples -------- .. code-block:: robotframework VerifyNoElement //*[@id\="do_not_wait_me"] This keyword has timeout functionality. If the element is still visible after given timeout, error is raised. For example. .. code-block:: robotframework VerifyNoElement //*[@id\="wait_me"] 20 #waits 20 seconds Parameters ---------- xpath : str Xpath expression without xpath= prefix. The equal sign "=" must be escaped with a "\\". timeout : str | int Timeout for the element to disappear. If the element is visible after given timeout, error is raised. The str is converted to integer using robot.utils.timestr_to_secs. (default 10 seconds) kwargs : | Accepted kwargs: | tag : html tag of preferred elemenr - | If tag is used then element is found | by some of it's attribute (xpath is not needed) | partial_match: True. If element is found by it's attribute set partial_match | to True to allow partial match Raises ------ NoSuchElementException Page did contain the element Related keywords ---------------- \`VerifyElement\` """ kwargs['element_kw'] = True if 'tag' in kwargs: web_elements = element.get_visible_elements_from_elements( element.get_elements_by_attributes(kwargs.get('tag'), xpath, **kwargs)) else: web_elements = element.get_webelements(xpath) if not web_elements: return raise QWebValueError( 'Page contained element with XPath "{}" after timeout'.format(xpath))
def verify_element(xpath, timeout=0, **kwargs): # pylint: disable=unused-argument r"""Verify that element can be found on the page and it is visible. Examples -------- .. code-block:: robotframework VerifyElement //*[@id\="wait_me"] This keyword has timeout functionality. If the element is not visible after given timeout, error is raised. For example. .. code-block:: robotframework VerifyElement //*[@id\="wait_me"] 20 #waits 20 seconds Parameters ---------- xpath : str Xpath expression without xpath= prefix. The equal sign "=" must be escaped with a "\\". timeout : str | int Timeout for finding the element. If the element is not visible after given timeout, error is raised. The str is converted to integer using robot.utils.timestr_to_secs. (default 10 seconds) kwargs : | Accepted kwargs: | tag : html tag of preferred elemenr - | If tag is used then element is found | by some of it's attribute (xpath is not needed) | partial_match: True. If element is found by it's attribute set partial_match | to True to allow partial match Raises ------ QWebElementNotFoundError Page did not contain element Related keywords ---------------- \`ClickElement\`, \`GetAttribute\`, \`GetWebElement\`, \`GetElementCount\`, \`VerifyItem\`, \`VerifyText\` """ kwargs['element_kw'] = True if 'tag' in kwargs: web_elements = element.get_visible_elements_from_elements( element.get_elements_by_attributes(kwargs.get('tag'), xpath, **kwargs)) else: web_elements = element.get_webelements(xpath, **kwargs) if web_elements: return raise QWebElementNotFoundError('No matching element found')
def get_item_using_anchor(text, anchor, **kwargs): xpath = '//*[@title="{0}" or @alt="{0}" or @data-tooltip="{0}" or ' \ '@tooltip="{0}" or @aria-label="{0}" or @data-icon="{0}"]'.format(text) if CONFIG["CssSelectors"]: web_elements = _get_item_by_css(text, **kwargs) else: web_elements = element.get_webelements(xpath, **kwargs) if web_elements: if CONFIG['SearchMode']: element.draw_borders(_get_correct_element(web_elements, str(anchor))) return _get_correct_element(web_elements, str(anchor)) no_raise = util.par2bool(kwargs.get('allow_non_existent', False)) if no_raise: return None raise QWebElementNotFoundError('Cannot find item for locator {}'.format(text))
def _get_all_dropdown_elements(**kwargs): dropdown_elements = element.get_webelements('//select', **kwargs) return dropdown_elements