Skip to content
Snippets Groups Projects
Commit 16f21509 authored by Rosen Georgiev's avatar Rosen Georgiev
Browse files

added gitingore

parent 72122797
No related branches found
No related tags found
No related merge requests found
Pipeline #54129 passed with stage
in 8 minutes and 15 seconds
......@@ -41,6 +41,21 @@ if (project.hasProperty("baseUrl")) {
baseUrl = project.property("baseUrl")
}
def projectLocation
if (project.hasProperty("projectLocation")) {
projectLocation = project.property("projectLocation")
}
def isHeadless
if(project.hasProperty("isHeadless")){
isHeadless = project.property("isHeadless")
}
def deviceType
if(project.hasProperty("deviceType")){
deviceType = project.property("deviceType")
}
tasks.withType(Test) {
systemProperties = System.getProperties()
......@@ -55,6 +70,9 @@ task regressionSuite(type: Test) {
}
systemProperty "file.encoding", "utf-8"
systemProperty "baseUrl", "${baseUrl}"
systemProperty "isHeadless", "${isHeadless}"
systemProperty "deviceType", "${deviceType}"
systemProperty "projectLocation", "${projectLocation}"
systemProperties System.getProperties()
......@@ -85,4 +103,8 @@ dependencies {
implementation group: 'net.sourceforge.tess4j', name: 'tess4j', version: '4.4.1'
implementation 'io.github.prashant-ramcharan:courgette-jvm:3.+'
implementation group: 'org.seleniumhq.selenium', name: 'selenium-server', version: '+'
implementation group: 'org.seleniumhq.selenium', name: 'selenium-java', version: '+'
implementation group: 'io.appium', name: 'java-client', version: '+'
}
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment