11# Applitools Example: Basic Selenium WebDriver in Java
22
3- This is the example project for the [ Selenium Java Basic tutorial] ( https://applitools.com/tutorials/quickstart/web/selenium/java/basic ) .
3+ This is the example project for the [ Selenium Java Basic tutorial] ( https://applitools.com/tutorials ) .
44It shows how to start automating visual tests
55with [ Applitools Eyes] ( https://applitools.com/platform/eyes/ )
66and [ Selenium WebDriver] ( https://www.selenium.dev/ ) in Java.
@@ -25,14 +25,19 @@ To run this example project, you'll need:
25253 . A good Java editor, such as [ JetBrains IntelliJ IDEA] ( https://www.jetbrains.com/idea/ ) .
26264 . [ Apache Maven] ( https://maven.apache.org/download.cgi ) (typically bundled with IDEs).
27275 . An up-to-date version of [ Google Chrome] ( https://www.google.com/chrome/downloads/ ) .
28- 6 . A corresponding version of [ ChromeDriver] ( https://chromedriver.chromium.org/downloads ) .
2928
3029The main test case is [ ` AcmeBankTests.java ` ] ( src/test/java/com/applitools/example/AcmeBankTests.java ) .
3130By default, the project will run tests with Ultrafast Grid but not Execution Cloud.
3231You can change these settings in the test class.
3332
3433To execute tests, set the ` APPLITOOLS_API_KEY ` environment variable
35- to your [ account's API key] ( https://applitools.com/tutorials/guides/getting-started/registering-an-account ) .
34+ to your [ account's API key] ( https://applitools.com/tutorials/getting-started/registering-an-account ) .
35+
36+ Install the dependencies
37+ ```
38+ mvn install
39+ ```
40+
3641You can launch the test from your IDE,
3742or you can run it from the command line with Maven like this:
3843
@@ -41,4 +46,4 @@ mvn exec:exec@run-the-tests -Dexec.classpathScope=test
4146```
4247
4348** For full instructions on running this project, take our
44- [ Selenium Java Basic tutorial] ( https://applitools.com/tutorials/quickstart/web/selenium/java/basic ) !**
49+ [ Selenium Java Basic tutorial] ( https://applitools.com/tutorials ) !**
0 commit comments