def find_element_by_xpath(
self,
xpath: str
) -> WebElement
In the active browser, find element by the given XPath.
Parameters:
xpath[Required]: str
the XPath of the element to find.
Returns:
WebElement object.
Example:
from clicknium import clicknium as cc
chrome_tab = cc.chrome.open("https://bing.com")
# find element by XPath
webelement = chrome_tab.find_element_by_xpath("//*[@id=\"sb_form_q\"]")
webelement.highlight()