def wait_disappear_by_xpath(
self,
xpath: str,
wait_timeout: int = 30
) -> bool
In the active browser, wait for the element to disappear by the given XPath.
Parameters:
xpath[Required]: str
the XPath of the element to find.
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 XPath
result = chrome_tab.wait_disappear_by_xpath("//*[@id=\"sb_form_q\"]", wait_timeout=5)
print(result)