Browse Source

Create a new search_and_display_inactive_rules integration test and activate all new IT tests in all-tests.html

tags/2.6
fmallet 13 years ago
parent
commit
1fd085a34d

+ 9
- 1
tests/integration/tests/src/it/selenium/all-tests.html View File

@@ -33,7 +33,6 @@
<tr>
<td><a href="filters/default-filters-console-for-admins-only.html">filters/default-filters-console-for-admins-only</a></td>
</tr>

<tr>
<td><a href="plugins/settings_on_core_plugins.html">plugins/settings_on_core_plugins</a></td>
</tr>
@@ -359,6 +358,12 @@
<tr>
<td><a href="profiles/create_java_profile.html">profiles/create_java_profile</a></td>
</tr>
<tr>
<td><a href="profiles/backup-profile.html">profiles/backup-profile</a></td>
</tr>
<tr>
<td><a href="profiles/bulk-change.html">profiles/bulk-change</a></td>
</tr>
<tr>
<td><a href="profiles/do-not-create-profile-with-existing-name.html">profiles/do-not-create-profile-with-existing-name</a>
</td>
@@ -448,6 +453,9 @@
<tr>
<td><a href="rules/search_by_rule_title.html">rules/search_by_rule_title</a></td>
</tr>
<tr>
<td><a href="rules/search_and_display_inactive_rules.html">rules/search_and_display_inactive_rules</a></td>
</tr>
<tr>
<td><a href="rules/rule_search_verify_form_values_on_first_call.html">rules/rule_search_verify_form_values_on_first_call</a>
</td>

tests/integration/tests/src/it/selenium/profiles/bakup-profile.html → tests/integration/tests/src/it/selenium/profiles/backup-profile.html View File


+ 57
- 0
tests/integration/tests/src/it/selenium/rules/search_and_display_inactive_rules.html View File

@@ -0,0 +1,57 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head profile="http://selenium-ide.openqa.org/profiles/test-case">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<link rel="selenium.base" href="" />
<title>search_and_display_inactive_rules</title>
</head>
<body>
<table cellpadding="1" cellspacing="1" border="1">
<thead>
<tr><td rowspan="1" colspan="3">search_and_display_inactive_rules</td></tr>
</thead><tbody>
<tr>
<td>open</td>
<td>/profiles</td>
<td></td>
</tr>
<tr>
<td>clickAndWait</td>
<td>rules-java-Sonar%20way</td>
<td></td>
</tr>
<tr>
<td>type</td>
<td>searchtext</td>
<td>SW_SWING_METHODS_INVOKED_IN_SWING_THREAD </td>
</tr>
<tr>
<td>clickAndWait</td>
<td>submit_search</td>
<td></td>
</tr>
<tr>
<td>assertTextPresent</td>
<td>0 results</td>
<td></td>
</tr>
<tr>
<td>assertTextPresent</td>
<td>+1 found in inactive rules</td>
<td></td>
</tr>
<tr>
<td>clickAndWait</td>
<td>inactive-rules-link</td>
<td></td>
</tr>
<tr>
<td>assertTextPresent</td>
<td>1 results</td>
<td></td>
</tr>

</tbody></table>
</body>
</html>

Loading…
Cancel
Save