File tree Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change 2424
2525class NoResetOption (SupportsCapabilities ):
2626 @property
27- def full_reset (self ) -> Optional [bool ]:
27+ def no_reset (self ) -> Optional [bool ]:
2828 """
2929 Whether the driver should not perform a reset.
3030 """
3131 return self .get_capability (NO_RESET )
3232
33- @full_reset .setter
34- def full_reset (self , value : bool ) -> None :
33+ @no_reset .setter
34+ def no_reset (self , value : bool ) -> None :
3535 """
3636 Set whether the driver should not perform a reset.
3737 """
Original file line number Diff line number Diff line change 2121from appium .options .common .auto_web_view_option import AutoWebViewOption
2222from appium .options .common .automation_name_option import AUTOMATION_NAME
2323from appium .options .common .base import PLATFORM_NAME , AppiumOptions
24+ from appium .options .common .bundle_id_option import BundleIdOption
2425from appium .options .common .clear_system_files_option import ClearSystemFilesOption
2526from appium .options .common .device_name_option import DeviceNameOption
2627from appium .options .common .enable_performance_logging_option import EnablePerformanceLoggingOption
118119class XCUITestOptions (
119120 AppiumOptions ,
120121 AppOption ,
122+ BundleIdOption ,
121123 ClearSystemFilesOption ,
122124 OrientationOption ,
123125 UdidOption ,
You can’t perform that action at this time.
0 commit comments