Sha256: abce0b4273f1f42dcd26fbee5cf7e60a52d334080cf3d3663a60789a32d36fa6
Contents?: true
Size: 1.88 KB
Versions: 63
Compression:
Stored size: 1.88 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=Carmax_Ex3 APP=Oct2015 # Specify the test configuration file TEST_CFG="../test-configs/test.config.json" ## # content # strict # exact # layyout ## MATCH_TYPE="layout" sauce_eyes() { ./run-test.sh -b chrome -d ../commands/commands.yml \ -P ../appmodel/page_model.json \ -t ../test-configs/test.config.json \ -v \ -A STP_Example \ -T VH \ -O /tmp/vt \ -e \ -m content \ -s \ -S $TITLE \ -c ../../capabilities/win10.chrome46.json } sauce() { ./run-test.sh -b chrome -d ../commands/commands.yml \ -P ../appmodel/page_model.json \ -t ../test-configs/test.config.json \ -v \ -s \ -w 5 \ -S $TITLE \ -c ../../capabilities/win10.chrome46.json } local() { ./run-test.sh -b chrome -d ../commands/commands.yml \ -P ../appmodel/page_model.json \ -t ../test-configs/test.config.json \ -v \ -w 5 \ -c ../../capabilities/win10.chrome46.json } sauce
Version data entries
63 entries across 63 versions & 1 rubygems