Skip to content

Commit 5fd841e

Browse files
Additional_plugins_appium
1 parent e5d8121 commit 5fd841e

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

docs/supported-appium-plugins.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,14 +60,16 @@ Below is a list of the supported Appium plugins on LambdaTest:
6060
| `images`| Enables image comparison features in tests. Allows for verification of visual elements through images. | "appiumPlugins": ["images"] |
6161
| `element-wait`| Provides enhanced wait capabilities for elements, allowing tests to wait for elements to be in a certain state.For further details, please check [this documentation](https://github.com/AppiumTestDistribution/appium-wait-plugin). | "appiumPlugins": ["element-wait"] |
6262
| `gestures` | Adds support for gesture-based interactions, enabling tests to perform complex gestures like swipe, pinch, and zoom. For further details, please check [this documentation](https://github.com/AppiumTestDistribution/appium-gestures-plugin). | "appiumPlugins": ["gestures"]
63+
| `ocr`| Enables Optical Character Recognition (OCR) capabilities for detecting and interacting with on-screen text in images or video frames during tests. | "appiumPlugins": ["ocr"] |
64+
| `execute-driver`| Allows the execution of custom scripts within the Appium driver context, giving enhanced flexibility and control during test execution. For more details, check [this documentation](https://www.npmjs.com/package/@appium/execute-driver-plugin) | "appiumPlugins": ["execute-driver"] |
6365

6466
**Python Example:**
6567

6668
```python
6769
capabilities = {
6870
"appiumVersion": "2.2.1",
6971
"platformName": "iOS",
70-
"appiumPlugins": ["images", "element-wait", "gestures"],
72+
"appiumPlugins": ["images", "element-wait", "gestures","ocr","execute-driver"],
7173
# Add other capabilities as needed
7274
}
7375
```

0 commit comments

Comments
 (0)