def close(self) -> None
Close the browser tab. The browser will be closed too if no opened tab.
Returns:
None
Example:
from clicknium import clicknium as cc
# open chrome browser
chrome_tab = cc.chrome.open("https://www.bing.com")
# close the tab
chrome_tab.close()