Sha256: 5a2eec4e4456fac80fb878bc6acf29ab327f0d2e850ff50d518ea413ca77ee2b
Contents?: true
Size: 1.22 KB
Versions: 63
Compression:
Stored size: 1.22 KB
Contents
#/bin/bash ## # Description # This test script overrides the provided title and appname (if provided in the test config. file) # # Set the APPLITOOLS_API_KEY environment variable with your key. # # export APPLITOOLS_API_KEY="__YOUR_KEY_HERE__" ## export SCOUTUI_BIN=../../../bin/scoutui_driver.rb # Specify browser under test (chrome, firefox, ie, safari) BUT=firefox # Specify the title and appName needed by Applitools ## NOTE: If the test configuration file specifies the title and app, it is superseded by the ## command line options. TITLE=DEMO-CarMax APP=Oct2015 # Specify the test configuration file TEST_CFG="../test-configs/test.config.json" ## # content # strict # exact # layyout ## MATCH_TYPE="layout" EYES=--eyes EYES= # The following command line parameters will override provided title and appName (if provided in test config file) #$SCOUTUI_BIN --config $TEST_CFG --browser $BUT $EYES --app $APP --title $TITLE --match $MATCH_TYPE --pagemodel ../appmodel/page_model.json --debug # The following # $SCOUTUI_BIN --config $TEST_CFG --eyes --match $MATCH_TYPE --browser $BUT ./run-test.sh -b chrome -d ../commands/commands.yml -P ../appmodel/page_model.json -t ../test-configs/test.config.json -w 5 -v
Version data entries
63 entries across 63 versions & 1 rubygems