Making the type hints more accurate before update

This commit is contained in:
Karim shoair
2024-11-24 13:49:31 +02:00
parent 15b7e3acee
commit 088117441d
+4 -4
View File
@@ -27,11 +27,11 @@ class PlaywrightEngine:
page_action: Callable = do_nothing,
wait_selector: Optional[str] = None,
wait_selector_state: Optional[str] = 'attached',
stealth: bool = False,
hide_canvas: bool = False,
disable_webgl: bool = False,
stealth: Optional[bool] = False,
hide_canvas: Optional[bool] = False,
disable_webgl: Optional[bool] = False,
cdp_url: Optional[str] = None,
nstbrowser_mode: bool = False,
nstbrowser_mode: Optional[bool] = False,
nstbrowser_config: Optional[Dict] = None,
google_search: Optional[bool] = True,
extra_headers: Optional[Dict[str, str]] = None,