Skip to content

Commit 0264d81

Browse files
feat: Add xcuitest driver options (appium#737)
1 parent 6eca124 commit 0264d81

File tree

100 files changed

+3548
-18
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

100 files changed

+3548
-18
lines changed

appium/options/mac/mac2/bundle_id_option.py renamed to appium/options/common/bundle_id_option.py

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -33,12 +33,6 @@ def bundle_id(self) -> Optional[str]:
3333
@bundle_id.setter
3434
def bundle_id(self, value: str) -> None:
3535
"""
36-
Set the bundle identifier of the application to automate, for example
37-
com.apple.TextEdit. This is an optional capability. If it is not provided
38-
then the session will be started without an application under test
39-
(actually, it will be Finder). If the application with the given
40-
identifier is not installed then an error will be thrown on session
41-
startup. If the application is already running then it will be moved to
42-
the foreground.
36+
Set the bundle identifier of the application to automate.
4337
"""
4438
self.set_capability(BUNDLE_ID, value)

appium/options/ios/safari/automatic_inspection_option.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ class AutomaticInspectionOption(SupportsCapabilities):
2626
@property
2727
def automatic_inspection(self) -> Optional[bool]:
2828
"""
29-
:Returns: Whether to use automatic inspection.
29+
Whether to use automatic inspection.
3030
"""
3131
return self.get_capability(AUTOMATIC_INSPECTION)
3232

appium/options/ios/safari/automatic_profiling_option.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ class AutomaticProfilingOption(SupportsCapabilities):
2626
@property
2727
def automatic_profiling(self) -> Optional[bool]:
2828
"""
29-
:Returns: Whether to use automatic profiling.
29+
Whether to use automatic profiling.
3030
"""
3131
return self.get_capability(AUTOMATIC_PROFILING)
3232

appium/options/ios/safari/device_name_option.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ class DeviceNameOption(SupportsCapabilities):
2626
@property
2727
def device_name(self) -> Optional[str]:
2828
"""
29-
:Returns: String representing the name of the device.
29+
String representing the name of the device.
3030
"""
3131
return self.get_capability(DEVICE_NAME)
3232

appium/options/ios/safari/device_type_option.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ class DeviceTypeOption(SupportsCapabilities):
2626
@property
2727
def device_type(self) -> Optional[str]:
2828
"""
29-
:Returns: String representing the type of the device.
29+
String representing the type of the device.
3030
"""
3131
return self.get_capability(DEVICE_TYPE)
3232

appium/options/ios/safari/device_udid_option.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ class DeviceUdidOption(SupportsCapabilities):
2626
@property
2727
def device_udid(self) -> Optional[str]:
2828
"""
29-
:Returns: String representing the UDID of the device.
29+
String representing the UDID of the device.
3030
"""
3131
return self.get_capability(DEVICE_UDID)
3232

appium/options/ios/safari/platform_build_version_option.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ class PlatformBuildVersionOption(SupportsCapabilities):
2626
@property
2727
def platform_build_version(self) -> Optional[str]:
2828
"""
29-
:Returns: String representing the platform build version.
29+
String representing the platform build version.
3030
"""
3131
return self.get_capability(PLATFORM_BUILD_VERSION)
3232

appium/options/ios/safari/platform_version_option.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ class PlatformVersionOption(SupportsCapabilities):
2626
@property
2727
def platform_version(self) -> Optional[str]:
2828
"""
29-
:Returns: String representing the platform version.
29+
String representing the platform version.
3030
"""
3131
return self.get_capability(PLATFORM_VERSION)
3232

appium/options/ios/safari/use_simulator_option.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ class UseSimulatorOption(SupportsCapabilities):
2626
@property
2727
def use_simulator(self) -> Optional[bool]:
2828
"""
29-
:Returns: Whether to use iOS Simulator.
29+
Whether to use iOS Simulator.
3030
"""
3131
return self.get_capability(USE_SIMULATOR)
3232

appium/options/ios/safari/webkit_webrtc_option.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ class WebkitWebrtcOption(SupportsCapabilities):
2626
@property
2727
def webkit_webrtc(self) -> Optional[Dict[str, Any]]:
2828
"""
29-
:Returns: WebRTC policies.
29+
WebRTC policies.
3030
"""
3131
return self.get_capability(WEBKIT_WEBRTC)
3232

0 commit comments

Comments
 (0)