-
-
Notifications
You must be signed in to change notification settings - Fork 86
/
Copy pathtestng-chrome.xml
23 lines (22 loc) · 1.36 KB
/
testng-chrome.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE suite SYSTEM "https://testng.org/testng-1.0.dtd">
<suite name="Chrome Test">
<test name="Chrome Test">
<parameter name="browser" value="chrome"/>
<classes>
<class name="org.yorkxin.copyasmarkdown.e2e.ContextMenuTest"/>
<class name="org.yorkxin.copyasmarkdown.e2e.CustomFormatPageTest"/>
<class name="org.yorkxin.copyasmarkdown.e2e.OptionsPageTest"/>
<class name="org.yorkxin.copyasmarkdown.e2e.OptionsPageTabGroupsTest"/>
<class name="org.yorkxin.copyasmarkdown.e2e.PermissionsPageTest"/>
<class name="org.yorkxin.copyasmarkdown.e2e.keyboardshortcut.OnPageContentsTest"/>
<class name="org.yorkxin.copyasmarkdown.e2e.keyboardshortcut.tabs.TabExportingTest"/>
<class name="org.yorkxin.copyasmarkdown.e2e.keyboardshortcut.tabs.TabExportingWithGroupsTest"/>
<class name="org.yorkxin.copyasmarkdown.e2e.keyboardshortcut.tabs.NoPermissionTest"/>
<class name="org.yorkxin.copyasmarkdown.e2e.popup.DisplayTest"/>
<class name="org.yorkxin.copyasmarkdown.e2e.popup.TabExportingTest"/>
<class name="org.yorkxin.copyasmarkdown.e2e.popup.TabExportingWithGroupsTest"/>
<class name="org.yorkxin.copyasmarkdown.e2e.popup.NoPermissionTest"/>
</classes>
</test>
</suite>