Appium-Python-Client 6.0.0__tar.gz → 6.0.1__tar.gz
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_python_client-6.0.0 → appium_python_client-6.0.1}/.github/issue_template.md +0 -1
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/.github/workflows/functional-test.yml +4 -4
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/.github/workflows/publish.yml +2 -2
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/.ruff.toml +7 -7
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/CHANGELOG.md +100 -0
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/PKG-INFO +16 -15
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/README.md +12 -11
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/common/helper.py +2 -2
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/options/android/common/adb/adb_exec_timeout_option.py +2 -3
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/options/android/common/adb/adb_port_option.py +1 -2
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/options/android/common/adb/allow_delay_adb_option.py +1 -2
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/options/android/common/adb/build_tools_version_option.py +1 -2
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/options/android/common/adb/clear_device_logs_on_start_option.py +1 -2
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/options/android/common/adb/ignore_hidden_api_policy_error_option.py +1 -2
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/options/android/common/adb/logcat_filter_specs_option.py +1 -2
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/options/android/common/adb/logcat_format_option.py +1 -2
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/options/android/common/adb/mock_location_app_option.py +1 -2
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/options/android/common/adb/remote_adb_host_option.py +1 -2
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/options/android/common/adb/skip_logcat_capture_option.py +1 -2
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/options/android/common/adb/suppress_kill_server_option.py +1 -2
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/options/android/common/app/allow_test_packages_option.py +1 -2
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/options/android/common/app/android_install_timeout_option.py +2 -3
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/options/android/common/app/app_activity_option.py +1 -2
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/options/android/common/app/app_package_option.py +1 -2
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/options/android/common/app/app_wait_activity_option.py +1 -2
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/options/android/common/app/app_wait_duration_option.py +2 -3
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/options/android/common/app/app_wait_for_launch_option.py +1 -2
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/options/android/common/app/app_wait_package_option.py +1 -2
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/options/android/common/app/auto_grant_premissions_option.py +1 -2
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/options/android/common/app/enforce_app_install_option.py +1 -2
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/options/android/common/app/intent_action_option.py +1 -2
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/options/android/common/app/intent_category_option.py +1 -2
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/options/android/common/app/intent_flags_option.py +1 -2
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/options/android/common/app/optional_intent_arguments_option.py +1 -2
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/options/android/common/app/remote_apps_cache_limit_option.py +1 -2
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/options/android/common/app/uninstall_other_packages_option.py +1 -2
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/options/android/common/avd/avd_args_option.py +1 -2
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/options/android/common/avd/avd_env_option.py +2 -3
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/options/android/common/avd/avd_launch_timeout_option.py +2 -3
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/options/android/common/avd/avd_option.py +1 -2
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/options/android/common/avd/avd_ready_timeout_option.py +2 -3
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/options/android/common/avd/gps_enabled_option.py +1 -2
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/options/android/common/avd/network_speed_option.py +1 -2
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/options/android/common/context/auto_webview_timeout_option.py +2 -3
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/options/android/common/context/chrome_logging_prefs_option.py +3 -3
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/options/android/common/context/chrome_options_option.py +3 -3
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/options/android/common/context/chromedriver_args_option.py +2 -3
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/options/android/common/context/chromedriver_chrome_mapping_file_option.py +1 -2
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/options/android/common/context/chromedriver_disable_build_check_option.py +1 -2
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/options/android/common/context/chromedriver_executable_dir_option.py +1 -2
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/options/android/common/context/chromedriver_executable_option.py +1 -2
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/options/android/common/context/chromedriver_port_option.py +1 -2
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/options/android/common/context/chromedriver_ports_option.py +2 -3
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/options/android/common/context/chromedriver_use_system_executable_option.py +1 -2
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/options/android/common/context/ensure_webviews_have_pages_option.py +1 -2
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/options/android/common/context/extract_chrome_android_package_from_context_name_option.py +1 -2
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/options/android/common/context/native_web_screenshot_option.py +1 -2
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/options/android/common/context/recreate_chrome_driver_sessions_option.py +1 -2
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/options/android/common/context/show_chromedriver_log_option.py +1 -2
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/options/android/common/context/webview_devtools_port_option.py +1 -2
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/options/android/common/localization/locale_script_option.py +1 -2
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/options/android/common/locking/skip_unlock_option.py +1 -2
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/options/android/common/locking/unlock_key_option.py +1 -2
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/options/android/common/locking/unlock_strategy_option.py +1 -2
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/options/android/common/locking/unlock_success_timeout_option.py +2 -3
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/options/android/common/locking/unlock_type_option.py +1 -2
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/options/android/common/mjpeg/mjpeg_screenshot_url_option.py +1 -2
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/options/android/common/other/disable_suppress_accessibility_service_option.py +1 -2
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/options/android/common/other/user_profile_option.py +1 -2
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/options/android/common/signing/key_alias_option.py +1 -2
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/options/android/common/signing/key_password_option.py +1 -2
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/options/android/common/signing/keystore_password_option.py +1 -2
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/options/android/common/signing/keystore_path_option.py +1 -2
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/options/android/common/signing/no_sign_option.py +1 -2
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/options/android/common/signing/use_keystore_option.py +1 -2
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/options/android/espresso/activity_options_option.py +2 -3
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/options/android/espresso/app_locale_option.py +2 -3
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/options/android/espresso/base.py +1 -2
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/options/android/espresso/espresso_build_config_option.py +3 -3
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/options/android/espresso/espresso_server_launch_timeout_option.py +2 -3
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/options/android/espresso/force_espresso_rebuild_option.py +1 -2
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/options/android/espresso/intent_options_option.py +3 -3
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/options/android/espresso/show_gradle_log_option.py +1 -2
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/options/android/uiautomator2/base.py +1 -2
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/options/android/uiautomator2/disable_window_animation_option.py +1 -2
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/options/android/uiautomator2/mjpeg_server_port_option.py +1 -2
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/options/android/uiautomator2/skip_device_initialization_option.py +1 -2
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/options/android/uiautomator2/skip_server_installation_option.py +1 -2
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/options/android/uiautomator2/uiautomator2_server_install_timeout_option.py +2 -3
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/options/android/uiautomator2/uiautomator2_server_launch_timeout_option.py +2 -3
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/options/android/uiautomator2/uiautomator2_server_read_timeout_option.py +2 -3
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/options/common/app_option.py +1 -2
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/options/common/auto_web_view_option.py +1 -2
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/options/common/automation_name_option.py +1 -2
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/options/common/base.py +7 -7
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/options/common/browser_name_option.py +1 -2
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/options/common/bundle_id_option.py +1 -2
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/options/common/clear_system_files_option.py +1 -2
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/options/common/device_name_option.py +1 -2
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/options/common/enable_performance_logging_option.py +1 -2
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/options/common/event_timings_option.py +1 -2
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/options/common/full_reset_option.py +1 -2
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/options/common/is_headless_option.py +1 -2
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/options/common/language_option.py +1 -2
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/options/common/locale_option.py +1 -2
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/options/common/new_command_timeout_option.py +2 -3
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/options/common/no_reset_option.py +1 -2
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/options/common/orientation_option.py +1 -2
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/options/common/other_apps_option.py +1 -2
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/options/common/platform_version_option.py +1 -2
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/options/common/postrun_option.py +2 -3
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/options/common/prerun_option.py +2 -3
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/options/common/print_page_source_on_find_failure_option.py +1 -2
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/options/common/skip_log_capture_option.py +1 -2
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/options/common/system_host_option.py +1 -2
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/options/common/system_port_option.py +1 -2
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/options/common/udid_option.py +1 -2
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/options/flutter_integration/base.py +1 -2
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/options/flutter_integration/flutter_element_wait_timeout_option.py +2 -3
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/options/flutter_integration/flutter_server_launch_timeout_option.py +2 -3
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/options/flutter_integration/flutter_system_port_option.py +1 -2
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/options/gecko/android_storage_option.py +1 -2
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/options/gecko/base.py +1 -2
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/options/gecko/firefox_options_option.py +3 -3
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/options/gecko/marionette_port_option.py +1 -2
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/options/gecko/verbosity_option.py +1 -2
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/options/ios/safari/automatic_inspection_option.py +1 -2
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/options/ios/safari/automatic_profiling_option.py +1 -2
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/options/ios/safari/base.py +1 -2
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/options/ios/safari/device_name_option.py +1 -2
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/options/ios/safari/device_type_option.py +1 -2
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/options/ios/safari/device_udid_option.py +1 -2
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/options/ios/safari/platform_build_version_option.py +1 -2
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/options/ios/safari/platform_version_option.py +1 -2
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/options/ios/safari/use_simulator_option.py +1 -2
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/options/ios/safari/webkit_webrtc_option.py +3 -3
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/options/ios/xcuitest/app/app_install_strategy_option.py +1 -2
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/options/ios/xcuitest/app/app_push_timeout_option.py +2 -3
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/options/ios/xcuitest/app/localizable_strings_dir_option.py +1 -2
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/options/ios/xcuitest/base.py +1 -2
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/options/ios/xcuitest/general/include_device_caps_to_session_info_option.py +1 -2
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/options/ios/xcuitest/general/reset_location_service_option.py +1 -2
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/options/ios/xcuitest/other/command_timeouts_option.py +2 -3
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/options/ios/xcuitest/other/launch_with_idb_option.py +1 -2
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/options/ios/xcuitest/other/show_ios_log_option.py +1 -2
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/options/ios/xcuitest/other/use_json_source_option.py +1 -2
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/options/ios/xcuitest/simulator/calendar_access_authorized_option.py +1 -2
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/options/ios/xcuitest/simulator/calendar_format_option.py +1 -2
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/options/ios/xcuitest/simulator/connect_hardware_keyboard_option.py +1 -2
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/options/ios/xcuitest/simulator/custom_ssl_cert_option.py +1 -2
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/options/ios/xcuitest/simulator/enforce_fresh_simulator_creation_option.py +1 -2
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/options/ios/xcuitest/simulator/force_simulator_software_keyboard_presence_option.py +1 -2
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/options/ios/xcuitest/simulator/ios_simulator_logs_predicate_option.py +1 -2
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/options/ios/xcuitest/simulator/keep_key_chains_option.py +1 -2
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/options/ios/xcuitest/simulator/keychains_exclude_patterns_option.py +1 -2
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/options/ios/xcuitest/simulator/permissions_option.py +2 -3
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/options/ios/xcuitest/simulator/reduce_motion_option.py +1 -2
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/options/ios/xcuitest/simulator/reset_on_session_start_only_option.py +1 -2
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/options/ios/xcuitest/simulator/scale_factor_option.py +1 -2
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/options/ios/xcuitest/simulator/shutdown_other_simulators_option.py +1 -2
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/options/ios/xcuitest/simulator/simulator_devices_set_path_option.py +1 -2
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/options/ios/xcuitest/simulator/simulator_pasteboard_automatic_sync_option.py +1 -2
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/options/ios/xcuitest/simulator/simulator_startup_timeout_option.py +2 -3
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/options/ios/xcuitest/simulator/simulator_trace_pointer_option.py +1 -2
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/options/ios/xcuitest/simulator/simulator_window_center_option.py +1 -2
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/options/ios/xcuitest/wda/allow_provisioning_device_regitration_option.py +1 -2
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/options/ios/xcuitest/wda/auto_accept_alerts_option.py +1 -2
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/options/ios/xcuitest/wda/auto_disimiss_alerts_option.py +1 -2
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/options/ios/xcuitest/wda/derived_data_path_option.py +1 -2
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/options/ios/xcuitest/wda/disable_automatic_screenshots_option.py +1 -2
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/options/ios/xcuitest/wda/force_app_launch_option.py +1 -2
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/options/ios/xcuitest/wda/keychain_password_option.py +1 -2
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/options/ios/xcuitest/wda/keychain_path_option.py +1 -2
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/options/ios/xcuitest/wda/max_typing_frequency_option.py +1 -2
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/options/ios/xcuitest/wda/mjpeg_server_port_option.py +1 -2
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/options/ios/xcuitest/wda/prebuilt_wda_path_option.py +1 -2
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/options/ios/xcuitest/wda/process_arguments_option.py +2 -3
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/options/ios/xcuitest/wda/result_bundle_path_option.py +1 -2
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/options/ios/xcuitest/wda/screenshot_quality_option.py +1 -2
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/options/ios/xcuitest/wda/should_terminate_app_option.py +1 -2
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/options/ios/xcuitest/wda/should_use_singleton_test_manager_option.py +1 -2
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/options/ios/xcuitest/wda/show_xcode_log_option.py +1 -2
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/options/ios/xcuitest/wda/simple_is_visible_check_option.py +1 -2
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/options/ios/xcuitest/wda/updated_wda_bundle_id_option.py +1 -2
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/options/ios/xcuitest/wda/use_native_caching_strategy_option.py +1 -2
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/options/ios/xcuitest/wda/use_new_wda_option.py +1 -2
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/options/ios/xcuitest/wda/use_prebuilt_wda_option.py +1 -2
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/options/ios/xcuitest/wda/use_preinstalled_wda_option.py +1 -2
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/options/ios/xcuitest/wda/use_simple_build_test_option.py +1 -2
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/options/ios/xcuitest/wda/use_xctestrun_file_option.py +1 -2
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/options/ios/xcuitest/wda/wait_for_idle_timeout_option.py +2 -3
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/options/ios/xcuitest/wda/wait_for_quiescence_option.py +2 -3
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/options/ios/xcuitest/wda/wda_base_url_option.py +1 -2
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/options/ios/xcuitest/wda/wda_connection_timeout_option.py +2 -3
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/options/ios/xcuitest/wda/wda_eventloop_idle_delay_option.py +2 -3
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/options/ios/xcuitest/wda/wda_launch_timeout_option.py +2 -3
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/options/ios/xcuitest/wda/wda_local_port_option.py +1 -2
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/options/ios/xcuitest/wda/wda_startup_retries_option.py +1 -2
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/options/ios/xcuitest/wda/wda_startup_retry_interval_option.py +2 -3
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/options/ios/xcuitest/wda/web_driver_agent_url_option.py +1 -2
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/options/ios/xcuitest/wda/xcode_org_id_option.py +1 -2
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/options/ios/xcuitest/wda/xcode_signing_id_option.py +1 -2
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/options/ios/xcuitest/webview/absolute_web_locations_option.py +1 -2
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/options/ios/xcuitest/webview/additional_webview_bundle_ids_option.py +2 -3
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/options/ios/xcuitest/webview/enable_async_execute_from_https_option.py +1 -2
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/options/ios/xcuitest/webview/full_context_list_option.py +1 -2
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/options/ios/xcuitest/webview/include_safari_in_webviews_option.py +1 -2
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/options/ios/xcuitest/webview/native_web_tap_option.py +1 -2
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/options/ios/xcuitest/webview/safari_garbage_collect_option.py +1 -2
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/options/ios/xcuitest/webview/safari_ignore_fraud_warning_option.py +1 -2
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/options/ios/xcuitest/webview/safari_ignore_web_hostnames_option.py +1 -2
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/options/ios/xcuitest/webview/safari_initial_url_option.py +1 -2
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/options/ios/xcuitest/webview/safari_log_all_communication_hex_dump_option.py +1 -2
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/options/ios/xcuitest/webview/safari_log_all_communication_option.py +1 -2
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/options/ios/xcuitest/webview/safari_open_links_in_background_option.py +1 -2
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/options/ios/xcuitest/webview/safari_socket_chunk_size_option.py +1 -2
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/options/ios/xcuitest/webview/safari_web_inspector_max_frame_length_option.py +1 -2
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/options/ios/xcuitest/webview/webkit_response_timeout_option.py +2 -3
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/options/ios/xcuitest/webview/webview_connect_retries_option.py +1 -2
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/options/ios/xcuitest/webview/webview_connect_timeout_option.py +2 -3
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/options/mac/mac2/app_path_option.py +2 -3
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/options/mac/mac2/arguments_option.py +2 -3
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/options/mac/mac2/base.py +3 -4
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/options/mac/mac2/bootstrap_root_option.py +1 -2
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/options/mac/mac2/environment_option.py +2 -3
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/options/mac/mac2/server_startup_timeout_option.py +2 -3
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/options/mac/mac2/show_server_logs_option.py +1 -2
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/options/mac/mac2/skip_app_kill_option.py +1 -2
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/options/mac/mac2/web_driver_agent_mac_url_option.py +1 -2
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/options/windows/windows/app_arguments_option.py +1 -2
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/options/windows/windows/app_top_level_window_option.py +1 -2
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/options/windows/windows/app_working_dir_option.py +1 -2
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/options/windows/windows/base.py +3 -4
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/options/windows/windows/create_session_timeout_option.py +2 -3
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/options/windows/windows/expreimental_web_driver_option.py +1 -2
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/options/windows/windows/wait_for_app_launch_option.py +2 -3
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/protocols/webdriver/can_execute_commands.py +2 -2
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/protocols/webdriver/can_execute_scripts.py +3 -3
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/protocols/webdriver/can_find_elements.py +3 -3
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/webdriver/appium_connection.py +3 -3
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/webdriver/appium_service.py +21 -20
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/webdriver/errorhandler.py +7 -6
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/webdriver/extensions/action_helpers.py +5 -7
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/webdriver/extensions/android/performance.py +3 -6
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/webdriver/extensions/android/system_bars.py +1 -2
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/webdriver/extensions/applications.py +2 -2
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/webdriver/extensions/clipboard.py +2 -3
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/webdriver/extensions/context.py +1 -2
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/webdriver/extensions/device_time.py +1 -2
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/webdriver/extensions/execute_driver.py +4 -4
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/webdriver/extensions/execute_mobile_command.py +2 -2
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/webdriver/extensions/flutter_integration/flutter_commands.py +17 -20
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/webdriver/extensions/flutter_integration/flutter_finder.py +3 -3
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/webdriver/extensions/hw_actions.py +1 -2
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/webdriver/extensions/images_comparison.py +5 -5
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/webdriver/extensions/keyboard.py +4 -5
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/webdriver/extensions/location.py +6 -7
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/webdriver/extensions/log_event.py +1 -2
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/webdriver/extensions/logs.py +3 -3
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/webdriver/extensions/remote_fs.py +2 -3
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/webdriver/extensions/screen_record.py +11 -2
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/webdriver/extensions/session.py +1 -2
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/webdriver/extensions/settings.py +3 -3
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/webdriver/locator_converter.py +1 -2
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/webdriver/switch_to.py +1 -2
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/webdriver/webdriver.py +18 -17
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/webdriver/webelement.py +6 -5
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/pyproject.toml +6 -6
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/uv.lock +101 -104
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/.github/actions/setup-appium-server/action.yml +0 -0
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/.github/dependabot.yml +0 -0
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/.github/workflows/lock-update.yml +0 -0
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/.github/workflows/pr-title.yml +0 -0
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/.github/workflows/unit-test.yml +0 -0
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/.gitignore +0 -0
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/.pre-commit-config.yaml +0 -0
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/LICENSE +0 -0
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/MANIFEST.in +0 -0
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/Makefile +0 -0
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/__init__.py +0 -0
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/common/__init__.py +0 -0
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/common/exceptions.py +0 -0
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/common/logger.py +0 -0
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/options/__init__.py +0 -0
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/options/android/__init__.py +0 -0
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/options/android/common/__init__.py +0 -0
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/options/android/common/adb/__init__.py +0 -0
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/options/android/common/app/__init__.py +0 -0
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/options/android/common/avd/__init__.py +0 -0
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/options/android/common/context/__init__.py +0 -0
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/options/android/common/localization/__init__.py +0 -0
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/options/android/common/locking/__init__.py +0 -0
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/options/android/common/mjpeg/__init__.py +0 -0
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/options/android/common/other/__init__.py +0 -0
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/options/android/common/signing/__init__.py +0 -0
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/options/android/espresso/__init__.py +0 -0
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/options/android/uiautomator2/__init__.py +0 -0
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/options/common/__init__.py +0 -0
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/options/common/supports_capabilities.py +0 -0
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/options/flutter_integration/__init__.py +0 -0
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/options/flutter_integration/flutter_enable_mock_camera_option.py +0 -0
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/options/gecko/__init__.py +0 -0
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/options/ios/__init__.py +0 -0
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/options/ios/safari/__init__.py +0 -0
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/options/ios/xcuitest/__init__.py +0 -0
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/options/ios/xcuitest/app/__init__.py +0 -0
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/options/ios/xcuitest/general/__init__.py +0 -0
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/options/ios/xcuitest/other/__init__.py +0 -0
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/options/ios/xcuitest/simulator/__init__.py +0 -0
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/options/ios/xcuitest/wda/__init__.py +0 -0
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/options/ios/xcuitest/webview/__init__.py +0 -0
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/options/mac/__init__.py +0 -0
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/options/mac/mac2/__init__.py +0 -0
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/options/windows/__init__.py +0 -0
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/options/windows/windows/__init__.py +0 -0
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/protocols/__init__.py +0 -0
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/protocols/webdriver/__init__.py +0 -0
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/py.typed +0 -0
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/version.py +0 -0
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/webdriver/__init__.py +0 -0
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/webdriver/applicationstate.py +0 -0
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/webdriver/client_config.py +0 -0
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/webdriver/clipboard_content_type.py +0 -0
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/webdriver/command_method.py +0 -0
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/webdriver/common/__init__.py +0 -0
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/webdriver/common/appiumby.py +0 -0
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/webdriver/connectiontype.py +0 -0
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/webdriver/extensions/__init__.py +0 -0
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/webdriver/extensions/android/__init__.py +0 -0
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/webdriver/extensions/android/activities.py +0 -0
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/webdriver/extensions/android/common.py +0 -0
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/webdriver/extensions/android/display.py +0 -0
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/webdriver/extensions/android/gsm.py +0 -0
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/webdriver/extensions/android/nativekey.py +0 -0
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/webdriver/extensions/android/network.py +0 -0
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/webdriver/extensions/android/power.py +0 -0
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/webdriver/extensions/android/sms.py +0 -0
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/webdriver/extensions/flutter_integration/__init__.py +0 -0
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/webdriver/extensions/flutter_integration/scroll_directions.py +0 -0
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/appium/webdriver/mobilecommand.py +0 -0
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/docs/Makefile +0 -0
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/docs/README.md +0 -0
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/docs/conf.py +0 -0
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/docs/generate.sh +0 -0
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/docs/index.rst +0 -0
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/docs/make.bat +0 -0
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/docs/webdriver.common.rst +0 -0
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/docs/webdriver.extensions.android.rst +0 -0
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/docs/webdriver.extensions.flutter_integration.rst +0 -0
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/docs/webdriver.extensions.rst +0 -0
- {appium_python_client-6.0.0 → appium_python_client-6.0.1}/docs/webdriver.rst +0 -0
{appium_python_client-6.0.0 → appium_python_client-6.0.1}/.github/workflows/functional-test.yml
RENAMED
|
@@ -129,7 +129,7 @@ jobs:
|
|
|
129
129
|
steps:
|
|
130
130
|
- uses: actions/checkout@v7
|
|
131
131
|
|
|
132
|
-
- uses: actions/setup-java@
|
|
132
|
+
- uses: actions/setup-java@v6.0.0
|
|
133
133
|
with:
|
|
134
134
|
distribution: 'temurin'
|
|
135
135
|
java-version: '17'
|
|
@@ -245,15 +245,15 @@ jobs:
|
|
|
245
245
|
XCODE_VERSION: 16.4
|
|
246
246
|
IOS_VERSION: 18.5
|
|
247
247
|
IPHONE_MODEL: iPhone 16
|
|
248
|
-
FLUTTER_ANDROID_APP: "https://github.com/AppiumTestDistribution/appium-flutter-server/releases/
|
|
249
|
-
FLUTTER_IOS_APP: "https://github.com/AppiumTestDistribution/appium-flutter-server/releases/
|
|
248
|
+
FLUTTER_ANDROID_APP: "https://github.com/AppiumTestDistribution/appium-flutter-server/releases/download/0.0.33/app-debug.apk"
|
|
249
|
+
FLUTTER_IOS_APP: "https://github.com/AppiumTestDistribution/appium-flutter-server/releases/download/0.0.33/ios.zip"
|
|
250
250
|
PREBUILT_WDA_PATH: ${{ github.workspace }}/wda/WebDriverAgentRunner-Runner.app
|
|
251
251
|
|
|
252
252
|
steps:
|
|
253
253
|
|
|
254
254
|
- uses: actions/checkout@v7
|
|
255
255
|
|
|
256
|
-
- uses: actions/setup-java@
|
|
256
|
+
- uses: actions/setup-java@v6.0.0
|
|
257
257
|
if: matrix.e2e-tests == 'flutter-android'
|
|
258
258
|
with:
|
|
259
259
|
distribution: 'zulu'
|
|
@@ -3,12 +3,13 @@ indent-width = 4
|
|
|
3
3
|
|
|
4
4
|
[lint]
|
|
5
5
|
select = [
|
|
6
|
-
# Pyflakes
|
|
7
|
-
"
|
|
8
|
-
#
|
|
9
|
-
"
|
|
10
|
-
#
|
|
11
|
-
"
|
|
6
|
+
"F", # Pyflakes
|
|
7
|
+
"PL", # Pylint
|
|
8
|
+
"I", # isort
|
|
9
|
+
"PERF", # perflint
|
|
10
|
+
"FURB", # Refurb
|
|
11
|
+
"SIM", # Simplify
|
|
12
|
+
"UP", # Upgrade
|
|
12
13
|
]
|
|
13
14
|
|
|
14
15
|
[lint.per-file-ignores]
|
|
@@ -22,7 +23,6 @@ select = [
|
|
|
22
23
|
]
|
|
23
24
|
|
|
24
25
|
[lint.pylint]
|
|
25
|
-
|
|
26
26
|
max-args = 6
|
|
27
27
|
|
|
28
28
|
[format]
|
|
@@ -2,8 +2,108 @@
|
|
|
2
2
|
|
|
3
3
|
<!-- version list -->
|
|
4
4
|
|
|
5
|
+
## v6.0.1 (2026-09-08)
|
|
6
|
+
|
|
7
|
+
### Bug Fixes
|
|
8
|
+
|
|
9
|
+
- Use seconds for service listening polling timeout
|
|
10
|
+
([#1293](https://github.com/appium/python-client/pull/1293),
|
|
11
|
+
[`c440732`](https://github.com/appium/python-client/commit/c4407328be30d84e1587e5868d6cddf323ee657a))
|
|
12
|
+
|
|
13
|
+
### Chores
|
|
14
|
+
|
|
15
|
+
- Add PERF, FURB, SIM ruff rules ([#1275](https://github.com/appium/python-client/pull/1275),
|
|
16
|
+
[`c36240e`](https://github.com/appium/python-client/commit/c36240eeaa69e61c56d617fc98c90dc213deb2e3))
|
|
17
|
+
|
|
18
|
+
- Add UP ruff rules and delete old typings
|
|
19
|
+
([#1278](https://github.com/appium/python-client/pull/1278),
|
|
20
|
+
[`9622c1e`](https://github.com/appium/python-client/commit/9622c1e2fb92e67a7983b1b5bb96f674201bbb47))
|
|
21
|
+
|
|
22
|
+
- Up minimum selenium_version and doc it
|
|
23
|
+
([#1273](https://github.com/appium/python-client/pull/1273),
|
|
24
|
+
[`a7f909c`](https://github.com/appium/python-client/commit/a7f909ca26872cb635ef33b9a0f36e6466d233b4))
|
|
25
|
+
|
|
26
|
+
- **deps**: Bump gitpython from 3.1.57 to 3.1.58
|
|
27
|
+
([#1271](https://github.com/appium/python-client/pull/1271),
|
|
28
|
+
[`7c11ab0`](https://github.com/appium/python-client/commit/7c11ab08e0bb4eada90d34d067cd3b3a90caa6e1))
|
|
29
|
+
|
|
30
|
+
### Continuous Integration
|
|
31
|
+
|
|
32
|
+
- Enable auto release again
|
|
33
|
+
([`4f7e38d`](https://github.com/appium/python-client/commit/4f7e38d217a88b225205e5a21580556f079caf1b))
|
|
34
|
+
|
|
35
|
+
- Fix url for the flutter test app ([#1281](https://github.com/appium/python-client/pull/1281),
|
|
36
|
+
[`2d5edbe`](https://github.com/appium/python-client/commit/2d5edbe3dba1816d109f882257db327e6bb47b7b))
|
|
37
|
+
|
|
38
|
+
- **deps**: Bump actions/setup-java from 5.6.0 to 5.7.0
|
|
39
|
+
([#1272](https://github.com/appium/python-client/pull/1272),
|
|
40
|
+
[`534fe7d`](https://github.com/appium/python-client/commit/534fe7df33cf9b3716becaaa93c420ab5498168b))
|
|
41
|
+
|
|
42
|
+
- **deps**: Bump actions/setup-java from 5.7.0 to 6.0.0
|
|
43
|
+
([#1285](https://github.com/appium/python-client/pull/1285),
|
|
44
|
+
[`54251be`](https://github.com/appium/python-client/commit/54251be816c7e0a306581a94db04f7b1ff24b1b0))
|
|
45
|
+
|
|
46
|
+
- **deps**: Bump selenium from 4.46.0 to 4.47.0
|
|
47
|
+
([#1277](https://github.com/appium/python-client/pull/1277),
|
|
48
|
+
[`a6dd793`](https://github.com/appium/python-client/commit/a6dd7936a916017bead677e8c6cb7008a67dcacb))
|
|
49
|
+
|
|
50
|
+
- **deps**: Bump selenium from 4.47.0 to 4.48.0
|
|
51
|
+
([#1287](https://github.com/appium/python-client/pull/1287),
|
|
52
|
+
[`cdaf108`](https://github.com/appium/python-client/commit/cdaf10881fa2786f70ef0dee05b30fd301a7814f))
|
|
53
|
+
|
|
54
|
+
- **deps-dev**: Bump mypy from 2.3.0 to 2.3.1
|
|
55
|
+
([#1280](https://github.com/appium/python-client/pull/1280),
|
|
56
|
+
[`41b6158`](https://github.com/appium/python-client/commit/41b6158f36a9c9eea5fcfaead1e1bb091a747426))
|
|
57
|
+
|
|
58
|
+
- **deps-dev**: Bump python-semantic-release from 10.6.1 to 10.6.2
|
|
59
|
+
([#1288](https://github.com/appium/python-client/pull/1288),
|
|
60
|
+
[`6d775af`](https://github.com/appium/python-client/commit/6d775af39a06ca7b3755b50f3c840926e70c80e8))
|
|
61
|
+
|
|
62
|
+
- **deps-dev**: Bump ruff from 0.16.1 to 0.16.2
|
|
63
|
+
([#1276](https://github.com/appium/python-client/pull/1276),
|
|
64
|
+
[`abdb347`](https://github.com/appium/python-client/commit/abdb347cbbab4d63ccd1aa96f6541de7375b2058))
|
|
65
|
+
|
|
66
|
+
- **deps-dev**: Bump ruff from 0.16.2 to 0.16.3
|
|
67
|
+
([#1279](https://github.com/appium/python-client/pull/1279),
|
|
68
|
+
[`4cd8822`](https://github.com/appium/python-client/commit/4cd882294a4c1e077f04f572beebf6bbcdd32a66))
|
|
69
|
+
|
|
70
|
+
- **deps-dev**: Bump ruff from 0.16.3 to 0.16.4
|
|
71
|
+
([#1284](https://github.com/appium/python-client/pull/1284),
|
|
72
|
+
[`8f32c8b`](https://github.com/appium/python-client/commit/8f32c8b21a659010b7f82cdffc52bf90ec325edc))
|
|
73
|
+
|
|
74
|
+
- **deps-dev**: Bump ruff from 0.16.4 to 0.16.5
|
|
75
|
+
([#1286](https://github.com/appium/python-client/pull/1286),
|
|
76
|
+
[`bca93b5`](https://github.com/appium/python-client/commit/bca93b59222089bba79ff137c6e22782eba04a21))
|
|
77
|
+
|
|
78
|
+
- **deps-dev**: Bump types-python-dateutil
|
|
79
|
+
([#1274](https://github.com/appium/python-client/pull/1274),
|
|
80
|
+
[`a974755`](https://github.com/appium/python-client/commit/a974755b56e2576bd606eefb31189a7c2ad7620b))
|
|
81
|
+
|
|
82
|
+
### Documentation
|
|
83
|
+
|
|
84
|
+
- Add breaking change note in the changelog
|
|
85
|
+
([`5096f41`](https://github.com/appium/python-client/commit/5096f4103bee0aba8a321c084d23626ac8107d63))
|
|
86
|
+
|
|
87
|
+
- Add usage examples for screen recording methods
|
|
88
|
+
([#1290](https://github.com/appium/python-client/pull/1290),
|
|
89
|
+
[`0fe6d91`](https://github.com/appium/python-client/commit/0fe6d914bc17d7a383347a96b3948d1291b57fcb))
|
|
90
|
+
|
|
91
|
+
### Testing
|
|
92
|
+
|
|
93
|
+
- Cover the service listening polling budget
|
|
94
|
+
([#1293](https://github.com/appium/python-client/pull/1293),
|
|
95
|
+
[`c440732`](https://github.com/appium/python-client/commit/c4407328be30d84e1587e5868d6cddf323ee657a))
|
|
96
|
+
|
|
97
|
+
|
|
5
98
|
## v6.0.0 (2026-08-08)
|
|
6
99
|
|
|
100
|
+
### Breaking Changes
|
|
101
|
+
|
|
102
|
+
- Removed legacy Appium endpoint calls from commands which can be replaced with extensions
|
|
103
|
+
- This should not affect anything for users who use newer Appium such as Appium v2/3 based drivers
|
|
104
|
+
- References: [#1258](https://github.com/appium/python-client/pull/1258), [#1233](https://github.com/appium/python-client/pull/1233), [#1258](https://github.com/appium/python-client/pull/1258), [#1224](https://github.com/appium/python-client/pull/1224), [#1220](https://github.com/appium/python-client/pull/1220), [#1225](https://github.com/appium/python-client/pull/1225), [#1267](https://github.com/appium/python-client/pull/1267)
|
|
105
|
+
- Removed CanRememberExtensionPresence used only for the legacy endpoint support [#1269](https://github.com/appium/python-client/pull/1269)
|
|
106
|
+
|
|
7
107
|
### Bug Fixes
|
|
8
108
|
|
|
9
109
|
- Return int bitmask from set_network_connection
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.5
|
|
2
2
|
Name: Appium-Python-Client
|
|
3
|
-
Version: 6.0.
|
|
3
|
+
Version: 6.0.1
|
|
4
4
|
Summary: Python client for Appium
|
|
5
5
|
Project-URL: Homepage, https://appium.io/
|
|
6
6
|
Project-URL: Repository, https://github.com/appium/python-client
|
|
@@ -21,8 +21,8 @@ Classifier: Programming Language :: Python :: 3.13
|
|
|
21
21
|
Classifier: Programming Language :: Python :: 3.14
|
|
22
22
|
Classifier: Topic :: Software Development :: Testing
|
|
23
23
|
Requires-Python: >=3.10
|
|
24
|
-
Requires-Dist: selenium<5.0,>=4.
|
|
25
|
-
Requires-Dist: typing-extensions~=4.
|
|
24
|
+
Requires-Dist: selenium<5.0,>=4.37.0
|
|
25
|
+
Requires-Dist: typing-extensions~=4.16
|
|
26
26
|
Description-Content-Type: text/markdown
|
|
27
27
|
|
|
28
28
|
# Appium Python Client
|
|
@@ -66,17 +66,18 @@ download and unarchive the source tarball (Appium-Python-Client-X.X.tar.gz).
|
|
|
66
66
|
|
|
67
67
|
## Compatibility Matrix
|
|
68
68
|
|
|
69
|
-
|Appium Python Client| Selenium binding| Python version |
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
69
|
+
| Appium Python Client | Selenium binding | Python version |
|
|
70
|
+
|----------------------|---------------------|----------------|
|
|
71
|
+
| `6.0.0`+ | `4.37.0`+ | 3.10+ |
|
|
72
|
+
| `5.1.1` - `5.3.1` | `4.26.0` - `4.46.0` | 3.9+ |
|
|
73
|
+
| `4.5.0` - `5.1.0` | `4.26.0` - `4.31.0` | 3.9+ |
|
|
74
|
+
| `4.3.0` - `4.4.0` | `4.26.0` - `4.31.0` | 3.8+ |
|
|
75
|
+
| `3.0.0` - `4.2.1` | `4.12.0` - `4.25.0` | 3.8+ |
|
|
76
|
+
| `2.10.0` - `2.11.1` | `4.1.0` - `4.11.2` | 3.7+ |
|
|
77
|
+
| `2.2.0` - `2.9.0` | `4.1.0` - `4.9.0` | 3.7+ |
|
|
78
|
+
| `2.0.0` - `2.1.4` | `4.0.0` | 3.7+ |
|
|
79
|
+
| `1.0.0` - `1.3.0` | `3.x` | 3.7+ |
|
|
80
|
+
| `0.52` and below | `3.x` | 2.7, 3.4 - 3.7 |
|
|
80
81
|
|
|
81
82
|
The Appium Python Client depends on [Selenium Python binding](https://pypi.org/project/selenium/), thus
|
|
82
83
|
the Selenium Python binding update might affect the Appium Python Client behavior.
|
|
@@ -39,17 +39,18 @@ download and unarchive the source tarball (Appium-Python-Client-X.X.tar.gz).
|
|
|
39
39
|
|
|
40
40
|
## Compatibility Matrix
|
|
41
41
|
|
|
42
|
-
|Appium Python Client| Selenium binding| Python version |
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
42
|
+
| Appium Python Client | Selenium binding | Python version |
|
|
43
|
+
|----------------------|---------------------|----------------|
|
|
44
|
+
| `6.0.0`+ | `4.37.0`+ | 3.10+ |
|
|
45
|
+
| `5.1.1` - `5.3.1` | `4.26.0` - `4.46.0` | 3.9+ |
|
|
46
|
+
| `4.5.0` - `5.1.0` | `4.26.0` - `4.31.0` | 3.9+ |
|
|
47
|
+
| `4.3.0` - `4.4.0` | `4.26.0` - `4.31.0` | 3.8+ |
|
|
48
|
+
| `3.0.0` - `4.2.1` | `4.12.0` - `4.25.0` | 3.8+ |
|
|
49
|
+
| `2.10.0` - `2.11.1` | `4.1.0` - `4.11.2` | 3.7+ |
|
|
50
|
+
| `2.2.0` - `2.9.0` | `4.1.0` - `4.9.0` | 3.7+ |
|
|
51
|
+
| `2.0.0` - `2.1.4` | `4.0.0` | 3.7+ |
|
|
52
|
+
| `1.0.0` - `1.3.0` | `3.x` | 3.7+ |
|
|
53
|
+
| `0.52` and below | `3.x` | 2.7, 3.4 - 3.7 |
|
|
53
54
|
|
|
54
55
|
The Appium Python Client depends on [Selenium Python binding](https://pypi.org/project/selenium/), thus
|
|
55
56
|
the Selenium Python binding update might affect the Appium Python Client behavior.
|
|
@@ -13,12 +13,12 @@
|
|
|
13
13
|
# limitations under the License.
|
|
14
14
|
|
|
15
15
|
import base64
|
|
16
|
-
from typing import Any
|
|
16
|
+
from typing import Any
|
|
17
17
|
|
|
18
18
|
from appium import version as appium_version
|
|
19
19
|
|
|
20
20
|
|
|
21
|
-
def extract_const_attributes(cls: type) ->
|
|
21
|
+
def extract_const_attributes(cls: type) -> dict[str, Any]:
|
|
22
22
|
"""Return dict with constants attributes and values in the class(e.g. {'VAL1': 1, 'VAL2': 2})
|
|
23
23
|
|
|
24
24
|
Args:
|
|
@@ -16,7 +16,6 @@
|
|
|
16
16
|
# under the License.
|
|
17
17
|
|
|
18
18
|
from datetime import timedelta
|
|
19
|
-
from typing import Optional, Union
|
|
20
19
|
|
|
21
20
|
from appium.options.common.supports_capabilities import SupportsCapabilities
|
|
22
21
|
|
|
@@ -25,7 +24,7 @@ ADB_EXEC_TIMEOUT = 'adbExecTimeout'
|
|
|
25
24
|
|
|
26
25
|
class AdbExecTimeoutOption(SupportsCapabilities):
|
|
27
26
|
@property
|
|
28
|
-
def adb_exec_timeout(self) ->
|
|
27
|
+
def adb_exec_timeout(self) -> timedelta | None:
|
|
29
28
|
"""
|
|
30
29
|
Maximum time to wait until single ADB command is executed.
|
|
31
30
|
"""
|
|
@@ -33,7 +32,7 @@ class AdbExecTimeoutOption(SupportsCapabilities):
|
|
|
33
32
|
return None if value is None else timedelta(milliseconds=value)
|
|
34
33
|
|
|
35
34
|
@adb_exec_timeout.setter
|
|
36
|
-
def adb_exec_timeout(self, value:
|
|
35
|
+
def adb_exec_timeout(self, value: timedelta | int) -> None:
|
|
37
36
|
"""
|
|
38
37
|
Maximum time to wait until single ADB command is executed.
|
|
39
38
|
20000 ms by default.
|
|
@@ -15,7 +15,6 @@
|
|
|
15
15
|
# specific language governing permissions and limitations
|
|
16
16
|
# under the License.
|
|
17
17
|
|
|
18
|
-
from typing import Optional
|
|
19
18
|
|
|
20
19
|
from appium.options.common.supports_capabilities import SupportsCapabilities
|
|
21
20
|
|
|
@@ -24,7 +23,7 @@ ADB_PORT = 'adbPort'
|
|
|
24
23
|
|
|
25
24
|
class AdbPortOption(SupportsCapabilities):
|
|
26
25
|
@property
|
|
27
|
-
def adb_port(self) ->
|
|
26
|
+
def adb_port(self) -> int | None:
|
|
28
27
|
"""
|
|
29
28
|
Number of the port where ADB is running.
|
|
30
29
|
"""
|
|
@@ -15,7 +15,6 @@
|
|
|
15
15
|
# specific language governing permissions and limitations
|
|
16
16
|
# under the License.
|
|
17
17
|
|
|
18
|
-
from typing import Optional
|
|
19
18
|
|
|
20
19
|
from appium.options.common.supports_capabilities import SupportsCapabilities
|
|
21
20
|
|
|
@@ -24,7 +23,7 @@ ALLOW_DELAY_ADB = 'allowDelayAdb'
|
|
|
24
23
|
|
|
25
24
|
class AllowDelayAdbOption(SupportsCapabilities):
|
|
26
25
|
@property
|
|
27
|
-
def allow_delay_adb(self) ->
|
|
26
|
+
def allow_delay_adb(self) -> bool | None:
|
|
28
27
|
"""
|
|
29
28
|
Whether to prevent the emulator to use -delay-adb feature.
|
|
30
29
|
"""
|
|
@@ -15,7 +15,6 @@
|
|
|
15
15
|
# specific language governing permissions and limitations
|
|
16
16
|
# under the License.
|
|
17
17
|
|
|
18
|
-
from typing import Optional
|
|
19
18
|
|
|
20
19
|
from appium.options.common.supports_capabilities import SupportsCapabilities
|
|
21
20
|
|
|
@@ -24,7 +23,7 @@ BUILD_TOOLS_VERSION = 'buildToolsVersion'
|
|
|
24
23
|
|
|
25
24
|
class BuildToolsVersionOption(SupportsCapabilities):
|
|
26
25
|
@property
|
|
27
|
-
def build_tools_version(self) ->
|
|
26
|
+
def build_tools_version(self) -> str | None:
|
|
28
27
|
"""
|
|
29
28
|
Version of Android build tools to use.
|
|
30
29
|
"""
|
|
@@ -15,7 +15,6 @@
|
|
|
15
15
|
# specific language governing permissions and limitations
|
|
16
16
|
# under the License.
|
|
17
17
|
|
|
18
|
-
from typing import Optional
|
|
19
18
|
|
|
20
19
|
from appium.options.common.supports_capabilities import SupportsCapabilities
|
|
21
20
|
|
|
@@ -24,7 +23,7 @@ CLEAR_DEVICE_LOGS_ON_START = 'clearDeviceLogsOnStart'
|
|
|
24
23
|
|
|
25
24
|
class ClearDeviceLogsOnStartOption(SupportsCapabilities):
|
|
26
25
|
@property
|
|
27
|
-
def clear_device_logs_on_start(self) ->
|
|
26
|
+
def clear_device_logs_on_start(self) -> bool | None:
|
|
28
27
|
"""
|
|
29
28
|
Makes the driver to delete all the existing logs in the
|
|
30
29
|
device buffer before starting a new test.
|
|
@@ -15,7 +15,6 @@
|
|
|
15
15
|
# specific language governing permissions and limitations
|
|
16
16
|
# under the License.
|
|
17
17
|
|
|
18
|
-
from typing import Optional
|
|
19
18
|
|
|
20
19
|
from appium.options.common.supports_capabilities import SupportsCapabilities
|
|
21
20
|
|
|
@@ -24,7 +23,7 @@ IGNORE_HIDDEN_API_POLICY_ERROR = 'ignoreHiddenApiPolicyError'
|
|
|
24
23
|
|
|
25
24
|
class IgnoreHiddenApiPolicyErrorOption(SupportsCapabilities):
|
|
26
25
|
@property
|
|
27
|
-
def ignore_hidden_api_policy_error(self) ->
|
|
26
|
+
def ignore_hidden_api_policy_error(self) -> bool | None:
|
|
28
27
|
"""
|
|
29
28
|
Whether to ignore a failure while changing hidden API access policies.
|
|
30
29
|
"""
|
|
@@ -15,7 +15,6 @@
|
|
|
15
15
|
# specific language governing permissions and limitations
|
|
16
16
|
# under the License.
|
|
17
17
|
|
|
18
|
-
from typing import Optional
|
|
19
18
|
|
|
20
19
|
from appium.options.common.supports_capabilities import SupportsCapabilities
|
|
21
20
|
|
|
@@ -24,7 +23,7 @@ LOGCAT_FILTER_SPECS = 'logcatFilterSpecs'
|
|
|
24
23
|
|
|
25
24
|
class LogcatFilterSpecsOption(SupportsCapabilities):
|
|
26
25
|
@property
|
|
27
|
-
def logcat_filter_specs(self) ->
|
|
26
|
+
def logcat_filter_specs(self) -> str | None:
|
|
28
27
|
"""
|
|
29
28
|
Logcat filter format.
|
|
30
29
|
"""
|
|
@@ -15,7 +15,6 @@
|
|
|
15
15
|
# specific language governing permissions and limitations
|
|
16
16
|
# under the License.
|
|
17
17
|
|
|
18
|
-
from typing import Optional
|
|
19
18
|
|
|
20
19
|
from appium.options.common.supports_capabilities import SupportsCapabilities
|
|
21
20
|
|
|
@@ -24,7 +23,7 @@ LOGCAT_FORMAT = 'logcatFormat'
|
|
|
24
23
|
|
|
25
24
|
class LogcatFormatOption(SupportsCapabilities):
|
|
26
25
|
@property
|
|
27
|
-
def logcat_format(self) ->
|
|
26
|
+
def logcat_format(self) -> str | None:
|
|
28
27
|
"""
|
|
29
28
|
Log print format.
|
|
30
29
|
"""
|
|
@@ -15,7 +15,6 @@
|
|
|
15
15
|
# specific language governing permissions and limitations
|
|
16
16
|
# under the License.
|
|
17
17
|
|
|
18
|
-
from typing import Optional
|
|
19
18
|
|
|
20
19
|
from appium.options.common.supports_capabilities import SupportsCapabilities
|
|
21
20
|
|
|
@@ -24,7 +23,7 @@ MOCK_LOCATION_APP = 'mockLocationApp'
|
|
|
24
23
|
|
|
25
24
|
class MockLocationAppOption(SupportsCapabilities):
|
|
26
25
|
@property
|
|
27
|
-
def mock_location_app(self) ->
|
|
26
|
+
def mock_location_app(self) -> str | None:
|
|
28
27
|
"""
|
|
29
28
|
Identifier of the app, which is used as a system mock location provider.
|
|
30
29
|
"""
|
|
@@ -15,7 +15,6 @@
|
|
|
15
15
|
# specific language governing permissions and limitations
|
|
16
16
|
# under the License.
|
|
17
17
|
|
|
18
|
-
from typing import Optional
|
|
19
18
|
|
|
20
19
|
from appium.options.common.supports_capabilities import SupportsCapabilities
|
|
21
20
|
|
|
@@ -24,7 +23,7 @@ REMOTE_ADB_HOST = 'remoteAdbHost'
|
|
|
24
23
|
|
|
25
24
|
class RemoteAdbHostOption(SupportsCapabilities):
|
|
26
25
|
@property
|
|
27
|
-
def remote_adb_host(self) ->
|
|
26
|
+
def remote_adb_host(self) -> str | None:
|
|
28
27
|
"""
|
|
29
28
|
Address of the host where ADB is running.
|
|
30
29
|
"""
|
|
@@ -15,7 +15,6 @@
|
|
|
15
15
|
# specific language governing permissions and limitations
|
|
16
16
|
# under the License.
|
|
17
17
|
|
|
18
|
-
from typing import Optional
|
|
19
18
|
|
|
20
19
|
from appium.options.common.supports_capabilities import SupportsCapabilities
|
|
21
20
|
|
|
@@ -24,7 +23,7 @@ SKIP_LOGCAT_CAPTURE = 'skipLogcatCapture'
|
|
|
24
23
|
|
|
25
24
|
class SkipLogcatCaptureOption(SupportsCapabilities):
|
|
26
25
|
@property
|
|
27
|
-
def skip_logcat_capture(self) ->
|
|
26
|
+
def skip_logcat_capture(self) -> bool | None:
|
|
28
27
|
"""
|
|
29
28
|
Whether to delete all the existing logs in the
|
|
30
29
|
device buffer before starting a new test.
|
|
@@ -15,7 +15,6 @@
|
|
|
15
15
|
# specific language governing permissions and limitations
|
|
16
16
|
# under the License.
|
|
17
17
|
|
|
18
|
-
from typing import Optional
|
|
19
18
|
|
|
20
19
|
from appium.options.common.supports_capabilities import SupportsCapabilities
|
|
21
20
|
|
|
@@ -24,7 +23,7 @@ SUPPRESS_KILL_SERVER = 'suppressKillServer'
|
|
|
24
23
|
|
|
25
24
|
class SuppressKillServerOption(SupportsCapabilities):
|
|
26
25
|
@property
|
|
27
|
-
def suppress_kill_server(self) ->
|
|
26
|
+
def suppress_kill_server(self) -> bool | None:
|
|
28
27
|
"""
|
|
29
28
|
Prevents the driver from ever killing the ADB server explicitly.
|
|
30
29
|
"""
|
|
@@ -15,7 +15,6 @@
|
|
|
15
15
|
# specific language governing permissions and limitations
|
|
16
16
|
# under the License.
|
|
17
17
|
|
|
18
|
-
from typing import Optional
|
|
19
18
|
|
|
20
19
|
from appium.options.common.supports_capabilities import SupportsCapabilities
|
|
21
20
|
|
|
@@ -24,7 +23,7 @@ ALLOW_TEST_PACKAGES = 'allowTestPackages'
|
|
|
24
23
|
|
|
25
24
|
class AllowTestPackagesOption(SupportsCapabilities):
|
|
26
25
|
@property
|
|
27
|
-
def allow_test_packages(self) ->
|
|
26
|
+
def allow_test_packages(self) -> bool | None:
|
|
28
27
|
"""
|
|
29
28
|
Whether it is possible to use packages built with the test flag for
|
|
30
29
|
the automated testing (literally adds -t flag to the adb install command).
|
|
@@ -16,7 +16,6 @@
|
|
|
16
16
|
# under the License.
|
|
17
17
|
|
|
18
18
|
from datetime import timedelta
|
|
19
|
-
from typing import Optional, Union
|
|
20
19
|
|
|
21
20
|
from appium.options.common.supports_capabilities import SupportsCapabilities
|
|
22
21
|
|
|
@@ -25,7 +24,7 @@ ANDROID_INSTALL_TIMEOUT = 'androidInstallTimeout'
|
|
|
25
24
|
|
|
26
25
|
class AndroidInstallTimeoutOption(SupportsCapabilities):
|
|
27
26
|
@property
|
|
28
|
-
def android_install_timeout(self) ->
|
|
27
|
+
def android_install_timeout(self) -> timedelta | None:
|
|
29
28
|
"""
|
|
30
29
|
Maximum amount of time to wait until the application under test is installed.
|
|
31
30
|
"""
|
|
@@ -33,7 +32,7 @@ class AndroidInstallTimeoutOption(SupportsCapabilities):
|
|
|
33
32
|
return None if value is None else timedelta(milliseconds=value)
|
|
34
33
|
|
|
35
34
|
@android_install_timeout.setter
|
|
36
|
-
def android_install_timeout(self, value:
|
|
35
|
+
def android_install_timeout(self, value: timedelta | int) -> None:
|
|
37
36
|
"""
|
|
38
37
|
Maximum amount of time to wait until the application under test is installed.
|
|
39
38
|
90000 ms by default
|
|
@@ -15,7 +15,6 @@
|
|
|
15
15
|
# specific language governing permissions and limitations
|
|
16
16
|
# under the License.
|
|
17
17
|
|
|
18
|
-
from typing import Optional
|
|
19
18
|
|
|
20
19
|
from appium.options.common.supports_capabilities import SupportsCapabilities
|
|
21
20
|
|
|
@@ -24,7 +23,7 @@ APP_ACTIVITY = 'appActivity'
|
|
|
24
23
|
|
|
25
24
|
class AppActivityOption(SupportsCapabilities):
|
|
26
25
|
@property
|
|
27
|
-
def app_activity(self) ->
|
|
26
|
+
def app_activity(self) -> str | None:
|
|
28
27
|
"""
|
|
29
28
|
Name of the main app activity.
|
|
30
29
|
"""
|
|
@@ -15,7 +15,6 @@
|
|
|
15
15
|
# specific language governing permissions and limitations
|
|
16
16
|
# under the License.
|
|
17
17
|
|
|
18
|
-
from typing import Optional
|
|
19
18
|
|
|
20
19
|
from appium.options.common.supports_capabilities import SupportsCapabilities
|
|
21
20
|
|
|
@@ -24,7 +23,7 @@ APP_PACKAGE = 'appPackage'
|
|
|
24
23
|
|
|
25
24
|
class AppPackageOption(SupportsCapabilities):
|
|
26
25
|
@property
|
|
27
|
-
def app_package(self) ->
|
|
26
|
+
def app_package(self) -> str | None:
|
|
28
27
|
"""
|
|
29
28
|
App package identifier.
|
|
30
29
|
"""
|
|
@@ -15,7 +15,6 @@
|
|
|
15
15
|
# specific language governing permissions and limitations
|
|
16
16
|
# under the License.
|
|
17
17
|
|
|
18
|
-
from typing import Optional
|
|
19
18
|
|
|
20
19
|
from appium.options.common.supports_capabilities import SupportsCapabilities
|
|
21
20
|
|
|
@@ -24,7 +23,7 @@ APP_WAIT_ACTIVITY = 'appWaitActivity'
|
|
|
24
23
|
|
|
25
24
|
class AppWaitActivityOption(SupportsCapabilities):
|
|
26
25
|
@property
|
|
27
|
-
def app_wait_activity(self) ->
|
|
26
|
+
def app_wait_activity(self) -> str | None:
|
|
28
27
|
"""
|
|
29
28
|
Name of the app activity to wait for.
|
|
30
29
|
"""
|
|
@@ -16,7 +16,6 @@
|
|
|
16
16
|
# under the License.
|
|
17
17
|
|
|
18
18
|
from datetime import timedelta
|
|
19
|
-
from typing import Optional, Union
|
|
20
19
|
|
|
21
20
|
from appium.options.common.supports_capabilities import SupportsCapabilities
|
|
22
21
|
|
|
@@ -25,7 +24,7 @@ APP_WAIT_DURATION = 'appWaitDuration'
|
|
|
25
24
|
|
|
26
25
|
class AppWaitDurationOption(SupportsCapabilities):
|
|
27
26
|
@property
|
|
28
|
-
def app_wait_duration(self) ->
|
|
27
|
+
def app_wait_duration(self) -> timedelta | None:
|
|
29
28
|
"""
|
|
30
29
|
Identifier of the app package to wait for.
|
|
31
30
|
"""
|
|
@@ -33,7 +32,7 @@ class AppWaitDurationOption(SupportsCapabilities):
|
|
|
33
32
|
return None if value is None else timedelta(milliseconds=value)
|
|
34
33
|
|
|
35
34
|
@app_wait_duration.setter
|
|
36
|
-
def app_wait_duration(self, value:
|
|
35
|
+
def app_wait_duration(self, value: timedelta | int) -> None:
|
|
37
36
|
"""
|
|
38
37
|
Maximum amount of time to wait until the application under test is started
|
|
39
38
|
(e.g. an activity returns the control to the caller). 20000 ms by default.
|
|
@@ -15,7 +15,6 @@
|
|
|
15
15
|
# specific language governing permissions and limitations
|
|
16
16
|
# under the License.
|
|
17
17
|
|
|
18
|
-
from typing import Optional
|
|
19
18
|
|
|
20
19
|
from appium.options.common.supports_capabilities import SupportsCapabilities
|
|
21
20
|
|
|
@@ -24,7 +23,7 @@ APP_WAIT_FOR_LAUNCH = 'appWaitForLaunch'
|
|
|
24
23
|
|
|
25
24
|
class AppWaitForLaunchOption(SupportsCapabilities):
|
|
26
25
|
@property
|
|
27
|
-
def app_wait_for_launch(self) ->
|
|
26
|
+
def app_wait_for_launch(self) -> bool | None:
|
|
28
27
|
"""
|
|
29
28
|
Whether to block until the app under test returns the control to the
|
|
30
29
|
caller after its activity has been started by Activity Manager.
|