-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtestNG.xml
More file actions
22 lines (22 loc) · 931 Bytes
/
testNG.xml
File metadata and controls
22 lines (22 loc) · 931 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE suite SYSTEM "http://testng.org/testng-1.0.dtd">
<suite name="Fanfare Test Suite">
<listeners>
<listener class-name="io.qameta.allure.testng.AllureTestNg"/>
</listeners>
<test name="FanfareTestSuite">
<classes>
<class name="fanfare.dev.FractionCodes2.AutoReportGeneratedClass">
<methods>
<include name="launchApp" />
<include name="clickProfileButton_Community" />
<include name="clickLoginEarnButton_Community"/>
<include name="waitForHomeToLoad_Home" />
<include name="clickHome_AfterLoadingAppFromCache" />
<include name="clickCancel_InAppOfferPopUp" />
<include name="AllureReportGenerator" />
</methods>
</class>
</classes>
</test>
</suite>