def activate(
self,
is_topmost: bool = True
) -> None
Activate the browser tab.
Parameters:
is_topmost: bool
It defines whether to set the browser window topmost.
Returns:
None
Example:
from clicknium import clicknium as cc
# open chrome browser
chrome_tab = cc.chrome.open("https://www.bing.com")
# activate the tab
chrome_tab.activate()