26 lines
664 B
Python
26 lines
664 B
Python
|
"""
|
||
|
This type stub file was generated by pyright.
|
||
|
"""
|
||
|
|
||
|
from typing import Any, Dict
|
||
|
from pyppeteer.frame_manager import Frame, FrameManager
|
||
|
|
||
|
"""Navigator Watcher module."""
|
||
|
class NavigatorWatcher:
|
||
|
"""NavigatorWatcher class."""
|
||
|
def __init__(self, frameManager: FrameManager, frame: Frame, timeout: int, options: Dict[str, Any] = ..., **kwargs: Any) -> None:
|
||
|
"""Make new navigator watcher."""
|
||
|
...
|
||
|
|
||
|
def navigationPromise(self) -> Any:
|
||
|
"""Return navigation promise."""
|
||
|
...
|
||
|
|
||
|
def cancel(self) -> None:
|
||
|
"""Cancel navigation."""
|
||
|
...
|
||
|
|
||
|
|
||
|
|
||
|
pyppeteerToProtocolLifecycle = ...
|