def wait_appear_by_xpath(
self,
xpath: str,
wait_timeout: int = 30
) -> WebElement
In the active browser, wait for the element to appear by the given XPath.
Parameters:
xpath[Required]: str
the XPath of the element to find.
wait_timeout: int
Timeout for the operation, the unit is second, and the default value is 30 seconds.
Returns:
WebElement object, or None if the element does not appear.
Example:
from clicknium import clicknium as cc
chrome_tab = cc.chrome.open("https://bing.com")
# wait element appear by XPath
webelement = chrome_tab.wait_appear_by_xpath("//*[@id=\"sb_form_q\"]")
if webelement:
webelement.highlight()