```python tabs = browser.list_tab() for tab in tabs: print(f"Tab atrrs: {tab.id} {tab.type} {tab.status} {tab.debug}") ``` I've just discovered that these attributes are functional. However, how can I retrieve other tab attributes such as the **title** and **URL**?