浏览器初始化内容

This commit is contained in:
2022-06-05 22:38:31 +08:00
parent 9850a24551
commit d48f7c772f
4 changed files with 93 additions and 7 deletions

View File

@ -1,2 +1,12 @@
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:
...