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.
Files
Douyin_Web_Live/browser/IDriver.py
2022-06-05 22:38:31 +08:00

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:
...