SetProperty (Property, Value)
Description
This command can change the configuration on the device during runtime. It will set the given property to the given value.
Parameters
- Property : Property (See the supported properties below)
- Value : The value to be set
Supported Properties:
Property | Value | Function | Supported in | |||||||
---|---|---|---|---|---|---|---|---|---|---|
hybridClick | Enable/disable or true/false (default mode = disable/false) | When hybridClick is enabled, click method will be executed using javascript. |
| |||||||
report.image.width | Size in pixels (default value: 500) | Defines the size, in pixels, of the generated images in the report. |
| |||||||
screen.latency | Unit in milliseconds | Some commands, for instance, SeeTestAutomation - Click, result in two screenshots in a report: a pre-action shot, which is taken right before the command execution starts, and a post-action shot. The value of screen.latency is used in the calculation of the time when the latter screenshot is taken. Namely, SeeTestAutomation holds on during screen.latency since the action of the current step is forwarded to a physical device and then grabs its post-action screenshot. Thus if you notice that the post-action screenshot is taken too early, you can tune the latency of its taking by updating the value of screen.latency. As a trade-off, however, this will slow down the execution of the test |
| |||||||
screen.quality | 1-100 (percentages) | To change the quality of the image received from the device. |
| |||||||
screen.refresh | Greater than 0 in milliseconds | To control the refresh rate time gap to get a new image from the device. |
| |||||||
ignore.ocr.recommendation | true/false | To enable/disable OCR recognition. |
| |||||||
Android .instrumentation.security | none, smart, hard (default value: smart) | To disable the Android LayoutParams FLAG_SECURE.
|
| |||||||
on.device.xpath | true/false | If it is set to true, it causes any web command that is using XPath to be calculated on the device itself. This enables a faster response. As part of the properties shown in the object spy are derivative it will not work on the device. So, if the XPath contains one of the followings tags, it will not be executed on the device (even if the property is set to true): @onScreen, @top, @css, @width, @height, @x, @y, @hidden, @text or @nodeName |
| |||||||
assert.element.idle | true/ false. (default value: false) | This property is used to control SeeTest verification behavior regarding busy elements. When the property is set to true, SeeTest will fail a command if the element in question is found on screen but in a busy state. Otherwise, the verification will ignore its busy state. Usage examples: 2. To click on an element, use: assert.element.idle=true (because clicks do not work on busy elements). Note This property is available also as an 'app-property', which can be declared and set on/off in the app.properties file. |
| |||||||
element.visibility.level | full/center/none/legacy_mode default value: legacy_mode. | This property is an app property used to define the desired visibility level of elements on the device's screen for the testing flow. Following are the visibility levels supported: For example: Running isElementFound() on an element that is completely hidden by the devices navigation bar will retrieve the following based on each mode: Full: false center: false none: true Note: |
| |||||||
chrome.load.timeout | integer>=0 (time in milliseconds). Default value: 10,000 ms for local devices and 15000 ms for cloud devices. | This property is a device property used to control the operations timeout on chrome. For example: 1. when executing ' launch(chrome:...) ' command, the requested website tries to load on the current tab, this process requires first loading the last website opened on this tab and if the loading process got timed-out. Chrome will load the new URL in a new tab. 2. Under bad network conditions, chrome might exhibit a performance deterioration. This property allows you to adjust chrome operations timeout under different network conditions. |
| |||||||
adbPortForward | selected port number/ -1 | To enable specifying which adb port number you wish to search a connected Android device from. If set to -1, it will forward to all adb ports. |
| |||||||
Android .native .nonInstrumented | true/false | Enable the user to switch between working under instrumented/non-instrumented mode during test execution. |
| |||||||
WPDevice .nonInstrumented.objects | enable/disable, true/false (default value is enable/true) or short/thin | If set false/disable, it will not take the non-instrumented dump. If set short/thin, it will take non-instrumented dump only for the application bar. |
| |||||||
ios.native .nonInstrumented | true/false | For Native dump only. If set to true, it will take the non-instrumented dump. |
| |||||||
iosDevice .nonInstrumented | enable/disable (default value: enable) | To switch between instrumented/non-instrumented modes while working with an iOS device. |
| |||||||
ios.elementsendtext.action.fire | true/ false (default value: false) | When the user uses the SeeTestAutomation - ElementSendText command and the ios.elementsendtext.action.fire property is enabled, it will trigger the event that should have been triggered by the keyboard. |
| |||||||
ios.atomic .sendText | true/false | When set to true, SeeTestAutomation- SendText command will ensure sending the text key by key, atomically . |
| |||||||
ios.non-instrumented.dump.escape.attributes | true/false (default value: false) | When set to true, it will escape properties (hidden, knownSuperClass) from the non-instrumented dump. Uses for big pages with a lot of elements. Note This property is available also as an 'app-property', which can be declared and set on/off in the app.properties file. |
| |||||||
ios.non-instrumented.dump.parameters | see SeeTestAutomation- Failure to get dump | Define a specific dump parameter to limits the elements numbers |
| |||||||
xcelement.type.include | true/false (default value: false) | Starting from SeeTest Automation 10.3 the 'Class' property has changed in non-instrumented dump. To go back to the older dump during runtime use this property with the value false. |
| |||||||
js.max.string.size | integer values > 0 (default value: 255) | Set the maximum text attribute length in the object properties. |
| |||||||
clicks.time.gap | Integer values > 0 (default value: 0) | iOS: Milliseconds between clicks in case a simulation of a triple click (or above) is desired. Set this property and make sure the number of clicks is 3 or above. This will simulate a fast repetitive click in the same spot (recommended values are 50 ms and up). Android:This property can also be used for clickCoordinate() command in Android |
| |||||||
Android .instrumentation.camera | true/ false or enable/disable. (default value: false) | This property enables you to support camera instrumentation on-the-fly. When set to true, the next time you use the install command with instrument=true, your application will be instrumented with the camera support. Note: This property is available also as an 'app-property', which can be declared and set on/off in the app.properties file. |
| |||||||
ios.auto.accept.alerts | true/false | If set to true, system alerts will be accepted automatically when they appear on screen. The click will happen during the next command that will use XPath queries.
|
| |||||||
ios.auto.dismiss.alerts Only works with iOS 9 and above. | true/false | If set to true, system alerts will be dismissed automatically when they appear on screen. The click will happen during the next command that will use XPath queries. The Dismiss options are:
|
| |||||||
android.install.grant.permissions related Android 6+ | true/false | Grants the permissions your app requires on install. Defaults to false |
| |||||||
attach.crash.log.to.report | true/false | Saves crash logs that were created on the device during the test to the report folder |
| |||||||
ios.dump.focus.process | process_name:<name> or bundle_id: <bundleId> or process_id:<pid> | Getting dump from specific process, identified by : process_name / bundle_id or process_id. For example, getting dump from assistiveTouch: ios.dump.focus.process=process_name:AssistiveTouchd |
| |||||||
ios.dump.non.instrumented.dump.include.attributes | attribute name (currently only 'visible' attribute is supported). | Used only on iOS for getting dump non instrumented included the attributes. For example: ios.dump.non.instrumented.dump.include.attributes=visible |
| |||||||
battery.report.percentage | true/false | change the presented data units for battery monitoring from the default unit which is mAh to percentage |
| |||||||
ios.keyboard.close.by.dump | true/false | Close keyboard with simulated user action based on keyboard in use |
| |||||||
location.service.gps location.service.network | true/false | Toggle gps off by setting both properties to false. Toggle gps on by using one of these properties to true:
|
| |||||||
ios.element-send-text.use.xcautomation | true/false | Use XCAutomation for elementSendText, by default is true, if set to false, then elementSendText operation rather then being atomically executing on the device will be executing in multiple steps. |
| |||||||
ios.dump.fetch.top | true / false(default) | Instead of calculating "top" property with the legacy heuristics, this property makes the "top" property being queried from the OS. Use this only if you have problems with the existing property, as it is a costly operation. |
| |||||||
disable.reporter | true | When running a grid test on cloud with a configured reporter, set this to true to save the test results locally. |
| |||||||
ios.instrumentation.log.level | none,fatal,error,warn,info,debug,all | Sets the desired log level to the iOS instrumentation. |
| |||||||
safari.webview.include | true / false(default) | Fetch the UI elements of safari webView. |
| |||||||
ios.element.top.bounds.contained.in.parent | true / false(default) | Sets top=false for elements that their rectangle bounds are not inside their parents bounds. |
| |||||||
ios.waiting.element.polling.interval | Integer values >= 0 (default value:0) | Used for stabilising click operations. Sets the interval between polling the element location in milliseconds, waiting for the element to be in the same location. |
| |||||||
ios.11.use.old.monitoring.service | true / false(default) | Used only for iOS 11 to choose the service which uses for monitoring CPU / Memory (the old service monitors only debug applications). |
| |||||||
ios.request.location.permission | true / false (default) | Request location permission. Required for getLocation to work on iOS. Supported on iOS 11 and above. |
| |||||||
controller.idle.timeout | Integer values >= 10000 (default: 10000) | Set idle controller timeout, how long will the controller remain alive after stopping the test execution. |
|