-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathConfig.properties
77 lines (62 loc) · 2.4 KB
/
Config.properties
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
##### Execution details #####
urlforenv=https://opensource-demo.orangehrmlive.com/
environment=Production
testername=QA Test User
##### Appium
##### App details
apppackage=com.flipkart.android
appactivity=com.flipkart.android.SplashActivity
appname=Flipkart
##### Perform execution on ####
# existingappium: uses already running appium instance [local or docker instance]. Thread count must be 1 in testng.xml
# local: will start and stop appium server for each test
# remote: used appium docker / selenium grid
# remoteurl: if runmode is grid than this value is required
runmode=local
## if runmode=local
ip=192.168.0.131
appiumjs=C:/Users/Shibu/AppData/Roaming/npm/node_modules/appium/build/lib/main.js
nodejs=C:/Program Files/nodejs/node.exe
## if runmode != local
remoteurl=http://192.168.0.142:4439/wd/hub
##### Is Real Time Dashboard ELK is setup? #####
# - yes: assuming elk is ready
# - no: don't use elk
# - if yes than provide elksuiteurl
useelk=yes
elksuiteurl=http://192.168.0.142:9200/automation/result
##### Do you want to delete reports older than 10 days #####
# - deleteoldreports
# - no: no report will be deleted
# - yes: reports older than 10 days will be deleted
# - numberofdays : Number of days
deleteoldreports=yes
numberofdays=10
##### Append in the existing report? #####
# - no: new report will be generated
# - yes: will append to existing index.html.
overridereports=no
##### Take Screenshots for passed test case? #####
passedscreenshot=yes
##### Retry for failed test cases #####
# NOT RECOMMENDED
# Maximum try will be 2
# - yes: failed test cases will run two times (1 + 2)
# - no: no rerun for failed test cases
retryfailedtestcases=no
##### Get test report report on email using Gmail or Outlook ( more support will be added soon )#####
# - sendmailafterexecution
# - yes: will send execution report on the below emailID
# - no: no report will be send
# - password: should be in Base64 encode form
# - To encode password
# - Linux: echo 'PASSWORD' | base64
# - Windows: powershell "[convert]::ToBase64String([Text.Encoding]::UTF8.GetBytes(\"PASSWORD\"))"
# - sendmailusing
# - gmail (For gmail, please refer ReadMe to enable 'Allow Less Secure')
# - outlook
sendmailafterexecution=no
sendmailusing=outlook
emailpassword=MzYzMDExNTJzU0BACg==