feat(fetchers): Adding the foundation of the new browser-based fetchers logic

This commit is contained in:
Karim shoair
2025-06-19 04:06:52 +03:00
parent 23b883f05a
commit 145b710960
7 changed files with 906 additions and 0 deletions
+1
View File
@@ -24,6 +24,7 @@ from typing import (
SUPPORTED_HTTP_METHODS = Literal["GET", "POST", "PUT", "DELETE"]
SelectorWaitStates = Literal["attached", "detached", "hidden", "visible"]
PageLoadStates = Literal["commit", "domcontentloaded", "load", "networkidle"]
StrOrBytes = Union[str, bytes]
try: