This repository has been archived by the owner on Apr 30, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathconfig.xml
76 lines (64 loc) · 2.7 KB
/
config.xml
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
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<MagenicMaqs>
<!-- Generic wait time in milliseconds - AKA how long do you wait for rechecking something -->
<WaitTime>100</WaitTime>
<!-- Generic time-out in milliseconds -->
<Timeout>10000</Timeout>
<!-- Do you want to create logs for your tests
<Log>YES</Log>
<Log>NO</Log>
<Log>OnFail</Log>-->
<Log>YES</Log>
<!--Logging Levels
<LogLevel>VERBOSE</LogLevel>
<LogLevel>INFORMATION</LogLevel>
<LogLevel>GENERIC</LogLevel>
<LogLevel>SUCCESS</LogLevel>
<LogLevel>WARNING</LogLevel>
<LogLevel>ERROR</LogLevel>-->
<LogLevel>VERBOSE</LogLevel>
<!-- Logging Types
<LogType>CONSOLE</LogType>
<LogType>TXT</LogType>
<LogType>HTML</LogType>-->
<LogType>TXT</LogType>
<!-- Log file path - Defaults to build location if no value is defined -->
<FileLoggerPath>./target/logs</FileLoggerPath>
</MagenicMaqs>
<AppiumMaqs>
<!-- Device settings -->
<PlatformName>Android</PlatformName>
<PlatformVersion>11.0</PlatformVersion>
<DeviceName>Android GoogleAPI Emulator</DeviceName>
<!-- Appium or grid connection -->
<MobileHubUrl>http://ondemand.saucelabs.com:80/wd/hub</MobileHubUrl>
<!-- Command time-out in milliseconds -->
<MobileCommandTimeout>122000</MobileCommandTimeout>
<!-- Wait time in milliseconds - AKA how long do you wait for rechecking something -->
<MobileWaitTime>1000</MobileWaitTime>
<!-- Time-out in milliseconds -->
<MobileTimeout>10000</MobileTimeout>
<!-- Do you want to take screenshots upon Soft Assert Failures
<SoftAssertScreenshot>YES</SoftAssertScreenshot>
<SoftAssertScreenshot>NO</SoftAssertScreenshot> -->
<SoftAssertScreenshot>NO</SoftAssertScreenshot>
<!-- Screenshot Image Formats
<ImageFormat>Bmp</ImageFormat>
<ImageFormat>Gif</ImageFormat>
<ImageFormat>Jpeg</ImageFormat>
<ImageFormat>Png</ImageFormat>
<ImageFormat>Tiff</ImageFormat>-->
<ImageFormat>Png</ImageFormat>
<!-- Do you want to save page source when a Soft Assert fails
<SavePageSourceOnFail>YES</SavePageSourceOnFail>
<SavePageSourceOnFail>NO</SavePageSourceOnFail>-->
<SavePageSourceOnFail>NO</SavePageSourceOnFail>
</AppiumMaqs>
<AppiumCapsMaqs>
<username>JMAQS</username>
<accessKey>80592d42-18a3-4303-9b65-b8f8181d0e67</accessKey>
<deviceOrientation>portrait</deviceOrientation>
<browserName>Chrome</browserName>
</AppiumCapsMaqs>
</configuration>