Skip to content

Commit 299f283

Browse files
authored
Update webdriver.py
1 parent 2a33f0d commit 299f283

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

appium/webdriver/webdriver.py

-3
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@
2323
)
2424
from selenium.webdriver.common.by import By
2525
from selenium.webdriver.remote.command import Command as RemoteCommand
26-
from selenium.webdriver.remote.file_detector import FileDetector
2726
from selenium.webdriver.remote.remote_connection import RemoteConnection
2827
from typing_extensions import Self
2928

@@ -228,7 +227,6 @@ def __init__(
228227
self,
229228
command_executor: Union[str, AppiumConnection] = 'http://127.0.0.1:4723',
230229
extensions: Optional[List['WebDriver']] = None,
231-
file_detector: Optional[FileDetector] = None,
232230
options: Union[AppiumOptions, List[AppiumOptions], None] = None,
233231
client_config: Optional[AppiumClientConfig] = None,
234232
):
@@ -237,7 +235,6 @@ def __init__(
237235
)
238236
super().__init__(
239237
command_executor=command_executor,
240-
file_detector=file_detector,
241238
options=options,
242239
locator_converter=AppiumLocatorConverter(),
243240
web_element_cls=MobileWebElement,

0 commit comments

Comments
 (0)