I need some help setting up a Robot Framework with Selenium - both standalone. My configuration is Jenkins + RobotFramework + Selenium all in Standalone Mode.
I Want to preconfigure a Job using a test set that is shipped with my self made bundle. In the end I want to make jenkins Job that comes with the selfmade package bundle to something like a automated installation qualification.
Everything starts up fine but my test can not load the selenium libs for web test, my last attemp was the following: -Start Jenkins
java -DJENKINS_HOME="%~dp0\jenkins_home" -jar jenkins.war --httpPort=8081 --webroot="%~dp0\jenkins"
-Start Selenium Server
java -jar selenium-server-standalone-2.42.2.jar
-Start Robot Job in Jenkins
java -Xbootclasspath/a:selenium-2.45.0/*.jar:selenium-2.45.0/libs/*.jar -jar %JENKINS_HOME%\jenkins_home\robotframework-2.8.7.jar %JENKINS_HOME%\jenkins_home\tests\myTest.txt
Sadly I am facing an error : "Importing test library 'Selenium2Library' failed: ImportError: No module named Selenium2Library" I tried several approaches to get it running.
Because of some preconditions I can not manipulate the contens of the Robot oder any othe .jar Slowly I feel this is impossible.