File tree Expand file tree Collapse file tree 4 files changed +53
-2
lines changed Expand file tree Collapse file tree 4 files changed +53
-2
lines changed Original file line number Diff line number Diff line change 2
2
<!DOCTYPE suite SYSTEM "http://testng.org/testng-1.0.dtd">
3
3
<suite name =" Browser Navigation test suite" >
4
4
<test name =" Browser navigation tests using Playwright on Chrome" >
5
- <parameter name =" browser" value =" firefox " />
5
+ <parameter name =" browser" value =" chrome " />
6
6
<classes >
7
7
<class name =" io.github.mfaisalkhatri.tests.FormAuthenticationTests" >
8
8
<methods >
Original file line number Diff line number Diff line change
1
+ <?xml version =" 1.0" encoding =" UTF-8" ?>
2
+ <!DOCTYPE suite SYSTEM "http://testng.org/testng-1.0.dtd">
3
+ <suite name =" Playwright demo test suite " >
4
+ <test name =" Mouse hover demo on Chrome" >
5
+ <classes >
6
+ <class name =" io.github.mfaisalkhatri.tests.MouseHoverTest" >
7
+ <methods >
8
+ <include name =" testMouseHover" />
9
+ </methods >
10
+ </class >
11
+ </classes >
12
+ </test >
13
+ </suite >
Original file line number Diff line number Diff line change
1
+ <?xml version =" 1.0" encoding =" UTF-8" ?>
2
+ <!DOCTYPE suite SYSTEM "http://testng.org/testng-1.0.dtd">
3
+ <suite name =" Playwright Demo Tests" parallel =" tests" >
4
+ <test name =" Web automation tests using Playwright on Chrome" >
5
+ <classes >
6
+ <class name =" io.github.mfaisalkhatri.tests.PlaywrightDemoTests" >
7
+ <methods >
8
+ <include name =" testOnChromeHeadless" />
9
+ <include name =" testOnChrome" />
10
+ <include name =" testOnChromeSlowMo" />
11
+ <include name =" testBrowserNavigation" />
12
+ </methods >
13
+ </class >
14
+ </classes >
15
+ </test >
16
+ <test name =" Web automation tests using Playwright on Firefox" >
17
+ <classes >
18
+ <class name =" io.github.mfaisalkhatri.tests.PlaywrightDemoTests" >
19
+ <methods >
20
+ <include name =" testOnFirefoxHeadless" />
21
+ <include name =" testOnFirefox" />
22
+ <include name =" testOnFirefoxSlowMo" />
23
+ </methods >
24
+ </class >
25
+ </classes >
26
+ </test >
27
+ <test name =" Web automation tests using Playwright on Edge" >
28
+ <classes >
29
+ <class name =" io.github.mfaisalkhatri.tests.PlaywrightDemoTests" >
30
+ <methods >
31
+ <include name =" testOnEdge" />
32
+ </methods >
33
+ </class >
34
+ </classes >
35
+ </test >
36
+ </suite >
Original file line number Diff line number Diff line change 1
1
<?xml version =" 1.0" encoding =" UTF-8" ?>
2
2
<!DOCTYPE suite SYSTEM "http://testng.org/testng-1.0.dtd">
3
- <suite name =" Playwright framework example tests " parallel = " tests " >
3
+ <suite name =" Playwright framework example tests " >
4
4
<suite-files >
5
5
<suite-file path =" testng-browsertest.xml" />
6
6
<suite-file path =" testng-browsernavigationtests.xml" />
10
10
<suite-file path =" testng-screenshottests.xml" />
11
11
<suite-file path =" testng-dropdowntests.xml" />
12
12
<suite-file path =" testng-textfielddemo.xml" />
13
+ <suite-file path =" testng-mousehovertest.xml" />
14
+ <suite-file path =" testng-playwrightdemotests.xml" />
13
15
</suite-files >
14
16
</suite >
You can’t perform that action at this time.
0 commit comments