Created
November 23, 2021 16:18
-
-
Save dannyshain/3e931aa578349250fb46b2d66b031c45 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# Run this script to install and initialize the library and then set your API key | |
# Install Robot Framework, Selenium, EyesLibrary packages and dependencies | |
pip install robotframework robotframework-seleniumlibrary eyes-robotframework | |
# Run EyesLibrary initialization script | |
python -m EyesLibrary init-config | |
# Set APPLITOOLS_API_KEY environment variable | |
read -p "Enter your Applitools API Key: " api_key | |
export APPLITOOLS_API_KEY=$api_key |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment