Skip to content

Commit

Permalink
tune
Browse files Browse the repository at this point in the history
  • Loading branch information
mykola-mokhnach committed Jul 1, 2024
1 parent 5e9e018 commit 60ffe0d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/reference/capabilities.md
Original file line number Diff line number Diff line change
Expand Up @@ -147,8 +147,8 @@ about capabilities, refer to the [Appium documentation](https://appium.io/docs/e
|`appium:autoWebview`| Move directly into Webview context if available. Default `false`|`true`, `false`|
|`appium:skipTriggerInputEventAfterSendkeys`| If this capability is set to `true`, then whenever you call the Send Keys method in a web context, the driver will not fire an additional `input` event on the input field used for the call. This event, turned on by default, helps in situations where JS frameworks (like React) do not respond to the input events that occur by default when the underlying Selenium atom is executed. Default `false`|`true`, `false`|
|`appium:sendKeyStrategy`| If this capability is set to `oneByOne`, then whenever you call the Send Keys method in a web context, the driver will type each character the given string consists of in serial order to the element. This strategy helps in situations where JS frameworks (like React) update the view for each input. If `appium:skipTriggerInputEventAfterSendkeys` capability is `true`, it will affect every type. For example, when you are going to type the word `appium` with `oneByOne` strategy and `appium:skipTriggerInputEventAfterSendkeys` is enabled, the `appium:skipTriggerInputEventAfterSendkeys` option affects each typing action: `a`, `p`, `p`,`i`, `u` and `m`. Suppose any other value or no value has been provided to the `appium:sendKeyStrategy` capability. In that case, the driver types the given string in the destination input element. `appium` Send Keys input types `appium` if `oneByOne` was not set. |`oneByOne`|
|`appium:showSafariConsoleLog`| Adds serialized Safari JavaScript console events to Appium server logs and writes fully serialized events into the `safariConsole` logs bucket. Default `false`|`true`, `false`|
|`appium:showSafariNetworkLog`| Adds serialized Safari network events to Appium server logs and writes fully serialized events into the `safariNetwork` logs bucket. Default `false`|`true`, `false`|
|`appium:showSafariConsoleLog`| Adds Safari JavaScript console events to Appium server logs and writes fully serialized events into the `safariConsole` logs bucket. Default `false`|`true`, `false`|
|`appium:showSafariNetworkLog`| Adds Safari network events to Appium server logs and writes fully serialized events into the `safariNetwork` logs bucket. Default `false`|`true`, `false`|

### Other

Expand Down

0 comments on commit 60ffe0d

Please sign in to comment.