-
Notifications
You must be signed in to change notification settings - Fork 0
/
Config.properties
70 lines (54 loc) · 2.04 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
##### Execution details #####
urlforenv=https://opensource-demo.orangehrmlive.com/
environment=Production
testername=QA Test User
##### Do you want the web drivers to be download automatically ####
# Applicable only if tests are run locally
downloadwebdriver=yes
##### Perform execution on ####
# local: uses browsers in the same machine
# remote: used local / grid / selenoid / zalenium
# remoteurl: if runmode is grid or selenoid than this value is required
runmode=local
remoteurl=http://192.168.0.142:4444/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==