BrowserTab.wait_disappear_by_css_selector

def wait_disappear_by_css_selector(
self,
css_selector: str,
wait_timeout: int = 30
) -> bool

In the active browser, wait for the element to disappear by the given CSS selector.

Parameters:
css_selector[Required]: str
   The CSS selector to find the element.
wait_timeout: int
   Timeout for the operation, the unit is second, and the default value is 30 seconds.

Returns:
 bool, return True if the element disappears within given timeout otherwise return False.

Example:


from clicknium import clicknium as cc

chrome_tab = cc.chrome.open("https://bing.com")

# wait element disappear by CSS selector
result = chrome_tab.wait_disappear_by_css_selector("#sb_form_q", wait_timeout=5)
print(result)

Previouswait_disappear_by_xpathNextscrape_data

What are your feelings
Updated on 29 August 2023