33This is the example project for the [ Selenium Python pytest tutorial] ( https://applitools.com/tutorials/quickstart/web/selenium/python ) .
44It shows how to start automating visual tests
55with [ Applitools Eyes] ( https://applitools.com/platform/eyes/ )
6- and the [ Ultrafast Grid] ( https://applitools.com/platform/ultrafast-grid/ )
7- using [ Selenium] ( https://www.selenium.dev/ ) in Python.
6+ and [ Selenium WebDriver] ( https://www.selenium.dev/ ) in Python.
87
98It uses:
109
@@ -14,7 +13,11 @@ It uses:
1413* [ Google Chrome] ( https://www.google.com/chrome/downloads/ ) as the local browser for testing
1514* [ pip] ( https://packaging.python.org/en/latest/tutorials/installing-packages/ ) for dependency management
1615* [ Applitools Eyes] ( https://applitools.com/platform/eyes/ ) for visual testing
16+
17+ It can also run tests with:
18+
1719* [ Applitools Ultrafast Grid] ( https://applitools.com/platform/ultrafast-grid/ ) for cross-browser execution
20+ * [ Applitools Execution Cloud] ( https://applitools.com/platform/execution-cloud/ ) for self-healing remote WebDriver sessions
1821
1922To run this example project, you'll need:
2023
@@ -32,6 +35,8 @@ pip install -r requirements.txt
3235```
3336
3437The main test case spec is [ ` test_acme_bank.py ` ] ( tests/test_acme_bank.py ) .
38+ By default, the project will run tests with Ultrafast Grid but not Execution Cloud.
39+ You can change these settings in [ ` conftest.py ` ] ( tests/conftest.py ) .
3540
3641To execute tests, set the ` APPLITOOLS_API_KEY ` environment variable
3742to your [ account's API key] ( https://applitools.com/tutorials/guides/getting-started/registering-an-account ) ,
0 commit comments