Created
February 3, 2011 10:36
-
-
Save imikemo/809328 to your computer and use it in GitHub Desktop.
Batch file for running Sikuli test cases from Robot Framework
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
@echo off | |
set sikuli_jar=C:\Program Files\Sikuli X\sikuli-script.jar | |
java -cp "robotframework-2.5.5.jar;%sikuli_jar%" ^ | |
-Dpython.path="%sikuli_jar%/Lib" ^ | |
org.robotframework.RobotFramework ^ | |
--pythonpath=calc.sikuli ^ | |
--outputdir=results ^ | |
--loglevel=TRACE ^ | |
%* |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment