Appium-Python-Client 6.0.1__py3-none-any.whl → 6.0.2__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- appium/webdriver/appium_service.py +4 -1
- {appium_python_client-6.0.1.dist-info → appium_python_client-6.0.2.dist-info}/METADATA +1 -1
- {appium_python_client-6.0.1.dist-info → appium_python_client-6.0.2.dist-info}/RECORD +5 -5
- {appium_python_client-6.0.1.dist-info → appium_python_client-6.0.2.dist-info}/WHEEL +0 -0
- {appium_python_client-6.0.1.dist-info → appium_python_client-6.0.2.dist-info}/licenses/LICENSE +0 -0
|
@@ -184,7 +184,7 @@ class AppiumService:
|
|
|
184
184
|
try:
|
|
185
185
|
return is_service_listening(
|
|
186
186
|
_make_server_url(self._cmd),
|
|
187
|
-
timeout=STATE_CHECK_INTERVAL_MS /
|
|
187
|
+
timeout=STATE_CHECK_INTERVAL_MS / 100.0, # 5 seconds
|
|
188
188
|
custom_validator=self._assert_is_running,
|
|
189
189
|
)
|
|
190
190
|
except AppiumStartupError:
|
|
@@ -286,6 +286,9 @@ def _parse_arg_value(args: list[str], arg_names: set[str], default: str) -> str:
|
|
|
286
286
|
for idx, arg in enumerate(args):
|
|
287
287
|
if arg in arg_names and idx < len(args) - 1:
|
|
288
288
|
return args[idx + 1]
|
|
289
|
+
name, separator, value = arg.partition('=')
|
|
290
|
+
if separator and name in arg_names:
|
|
291
|
+
return value
|
|
289
292
|
return default
|
|
290
293
|
|
|
291
294
|
|
|
@@ -272,7 +272,7 @@ appium/protocols/webdriver/can_execute_scripts.py,sha256=dMRDjreiyV3IJp7-NRUx1Tj
|
|
|
272
272
|
appium/protocols/webdriver/can_find_elements.py,sha256=sirq42kVaAnKMbwDDh4CoGIr8B0baEnJQEcJaDpTzmA,1175
|
|
273
273
|
appium/webdriver/__init__.py,sha256=oT-lIYWpqD562rbXy36HlS03pKfW48BIxqZsqt1XEm0,730
|
|
274
274
|
appium/webdriver/appium_connection.py,sha256=S-CodDwQWjT-lNwyHSsGtdb4GFHxTM9BXGoOyWdMI94,2405
|
|
275
|
-
appium/webdriver/appium_service.py,sha256=
|
|
275
|
+
appium/webdriver/appium_service.py,sha256=LZJ4mlD_1I5iVKi1erRFAqTUf8hHudf7VEgCBGYvTX8,12576
|
|
276
276
|
appium/webdriver/applicationstate.py,sha256=zUPaMt4o4mdAtWP6FapYLJju_tqO6FmMcYFpbFz83dM,735
|
|
277
277
|
appium/webdriver/client_config.py,sha256=iuVcGsBF9eGNsF_gzs8b6vZWS0iI1u7actaBGBwNrqY,1631
|
|
278
278
|
appium/webdriver/clipboard_content_type.py,sha256=Tyks8xA2dqvuQGEV4iVYr-iMvB-hsQBEcu8wWBxtJ4M,661
|
|
@@ -319,7 +319,7 @@ appium/webdriver/extensions/flutter_integration/__init__.py,sha256=wSUl6yC2TJNla
|
|
|
319
319
|
appium/webdriver/extensions/flutter_integration/flutter_commands.py,sha256=FwNqIykRyMAU8-344GTlceBOxLbS-bA9bfGX4iJpHxw,11985
|
|
320
320
|
appium/webdriver/extensions/flutter_integration/flutter_finder.py,sha256=HH9vGAouJuHzp29Jam_lQGrh67PDq6MxU5Ifewf7C5w,2164
|
|
321
321
|
appium/webdriver/extensions/flutter_integration/scroll_directions.py,sha256=CkOv7k21SMe-h2-EYSZ6MBKBGTRC1csQ-tuowHgMn0E,85
|
|
322
|
-
appium_python_client-6.0.
|
|
323
|
-
appium_python_client-6.0.
|
|
324
|
-
appium_python_client-6.0.
|
|
325
|
-
appium_python_client-6.0.
|
|
322
|
+
appium_python_client-6.0.2.dist-info/METADATA,sha256=I6raQ3nZoAMwCLPh69AQLGrsCMNkrhm6R27BD9ViM_4,20932
|
|
323
|
+
appium_python_client-6.0.2.dist-info/WHEEL,sha256=zOwg4jB6zX2kU910N-cMawjivD6tO8NEWvE12je1bVk,87
|
|
324
|
+
appium_python_client-6.0.2.dist-info/licenses/LICENSE,sha256=QxeKfXNmPWCfFyrXiwdVzMFPFMK0nlBrKhYLUoIcqhk,11384
|
|
325
|
+
appium_python_client-6.0.2.dist-info/RECORD,,
|
|
File without changes
|
{appium_python_client-6.0.1.dist-info → appium_python_client-6.0.2.dist-info}/licenses/LICENSE
RENAMED
|
File without changes
|