robotframework - Robot Framework-RIDE,Import Java Libraries -
have installed robot framework ide. after installation, how import jar files ride.
have tried add jar through add import option present in test suite. not being recognized(keywords not found error).
if import jar files should test run in execution profile jybot?
when try run test case jybot,am getting info follow:
robot framework installation not found. run tets, need install robot framework separately. see http://robotframework.org installation instructions.
first need install jython. can check instructions here. enable run tests using jybot.
then need make sure java library in classpath. or can set --pythonpath argument jybot.
this use run tests (just put in 'arguments' input field):
--pythonpath lib\star.jar:lib --escape star:star
use :
separate additional folders. --escape star:star
argument enables use of * include *.jar
files in folder.
i had trouble including libraries in folders space in name use --escape space:=
replaces =
symbol space. example:
--pythonpath "path=with=spaces\lib\star.jar" --escape star:star --escape space:=
if want use selenium2 library jython suggest download selenium2library java.
Comments
Post a Comment