Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/testdotai/java-selenium-sdk
🤖 Unleash the full power of test.ai into your Java Selenium tests
https://github.com/testdotai/java-selenium-sdk
ai geckodriver google-chrome java safaridriver selenium selenium-java selenium-webdriver test-ai
Last synced: 3 months ago
JSON representation
🤖 Unleash the full power of test.ai into your Java Selenium tests
- Host: GitHub
- URL: https://github.com/testdotai/java-selenium-sdk
- Owner: testdotai
- License: apache-2.0
- Created: 2022-02-16T06:29:13.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2022-04-17T00:52:43.000Z (over 2 years ago)
- Last Synced: 2024-09-30T17:03:14.016Z (3 months ago)
- Topics: ai, geckodriver, google-chrome, java, safaridriver, selenium, selenium-java, selenium-webdriver, test-ai
- Language: Java
- Homepage: https://sdk.test.ai/
- Size: 88.9 KB
- Stars: 12
- Watchers: 5
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
[![test.ai sdk logo](https://testdotai.github.io/static-assets/shared/logo-sdk.png)](https://test.ai/sdk)
[![JDK-11+](https://img.shields.io/badge/JDK-11%2B-blue)](https://adoptium.net)
[![javadoc](https://javadoc.io/badge2/ai.test.sdk/test-ai-selenium/javadoc.svg)](https://javadoc.io/doc/ai.test.sdk/test-ai-selenium)
[![Maven Central](https://img.shields.io/maven-central/v/ai.test.sdk/test-ai-selenium)](https://search.maven.org/artifact/ai.test.sdk/test-ai-selenium)
[![Apache 2.0](https://img.shields.io/badge/Apache-2.0-blue)](https://www.apache.org/licenses/LICENSE-2.0)
[![Discord](https://img.shields.io/discord/853669216880295946?&logo=discord)](https://sdk.test.ai/discord)
[![Twitter](https://img.shields.io/twitter/follow/testdotai)](https://twitter.com/testdotai)The test.ai selenium SDK is a simple library that makes it easy to write robust cross-browser web tests backed by computer vision and artificial intelligence.
test.ai integrates seamelessly with your existing tests, and will act as backup if your selectors break/fail by attempting to visually (computer vision) identify elements.
The test.ai SDK is able to accomplish this by automatically ingesting your selenium elements (using both screenshots and element names) when you run your test cases with test.ai for the first time.
The SDK is accompanied by a [web-based editor](https://sdk.test.ai/) which makes building visual test cases easy; you can draw boxes around your elements instead of using fragile CSS or XPath selectors.
## Install
Add the following line(s) to the dependencies section in your
**pom.xml (Maven)**
```xmlai.test.sdk
test-ai-selenium
0.2.0````
**build.gradle (Gradle)**
```groovy
implementation 'ai.test.sdk:test-ai-selenium:0.2.0'
```## Tutorial
We have a detailed step-by-step tutorial which will help you get set up with the SDK: https://github.com/testdotai/java-selenium-sdk-demo## Resources
* [Register/Login to your test.ai account](https://sdk.test.ai/login)
* [API Docs](https://www.javadoc.io/doc/ai.test.sdk/test-ai-selenium)
* [Another Tutorial](https://sdk.test.ai/tutorial)