I did some research for RobotFramework using maven plugin. But I don't like it. it is too restrictive.Today I tried to implement a Gradle script, it is working, surprising easy. Here is the code sample.
For details please refer my github repository.
build.gradle
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
apply plugin: 'java' | |
repositories { | |
mavenCentral() | |
} | |
dependencies { | |
runtime group: 'org.robotframework', name: 'robotframework', version: '2.8.7' | |
runtime group: 'com.github.markusbernhardt', name:'robotframework-selenium2library-java', version:'1.4.0.7' | |
} | |
clean{ | |
delete 'target' | |
} | |
task(run, type: JavaExec) { | |
main = 'org.robotframework.RobotFramework' | |
classpath = sourceSets.main.runtimeClasspath | |
args '--variable', 'BROWSER:gc' | |
args '--outputdir', 'target' | |
args 'tests' | |
} | |
defaultTasks 'run' |
Great service,I always appreciate your post.
ReplyDeleteOnline Robot Framework Training