We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9687595 commit 9504017Copy full SHA for 9504017
py/selenium/webdriver/wpewebkit/service.py
@@ -37,6 +37,8 @@ class Service(service.Service):
37
:param env: (Optional) Mapping of environment variables for the new process, defaults to `os.environ`.
38
"""
39
40
+ _service_args: list[str]
41
+
42
def __init__(
43
self,
44
executable_path: str = DEFAULT_EXECUTABLE_PATH,
py/selenium/webdriver/wpewebkit/webdriver.py
@@ -28,9 +28,11 @@
28
class WebDriver(RemoteWebDriver):
29
"""Controls the WPEWebKitDriver and allows you to drive the browser."""
30
31
+ service: Service
32
33
34
- options=None,
35
+ options: Optional[Options] = None,
36
service: Optional[Service] = None,
):
"""Creates a new instance of the WPEWebKit driver.
0 commit comments