Tabs
To manage and navigate through browse tabs, use the following methods.
Accessing the object
| app = FastRPA()
web = app.browse('https:...')
type(web.tabs)
|
Outputfastrpa.core.tabs.Tabs
Reference
Get opened tabs
Output['AD9B396BF70C366D8A1FDE5450699D41', ...]
Get current tab
Output'AD9B396BF70C366D8A1FDE5450699D41'
Get current tab index
Get the opened tabs count
Open a new tab
This method also switch to the new tab and returns the new tab id.
Output'AD9B396BF70C366D8A1FDE5450699D41'
Close the current tab
Check if a tab is opened
| 'AD9B396BF70C366D8A1FDE5450699D41' in web.tabs
|