This repository has been archived on 2024-09-10. You can view files and clone it, but cannot push or open issues or pull requests.

13 lines
255 B
Python

class IDriver():
def new_tab(self) -> str:
...
def change_tab(self, tab_handler: str):
...
def open_url(self, url: str, tab_handler: str = ""):
...
def screenshot(self, tab_handler: str = "") -> str:
...