File tree Expand file tree Collapse file tree 2 files changed +20
-7
lines changed
java/ru/mystamps/web/tests/cases Expand file tree Collapse file tree 2 files changed +20
-7
lines changed Original file line number Diff line number Diff line change @@ -42,13 +42,6 @@ public void shouldExistsWelcomeText() {
42
42
assertThat (page .textPresent (tr ("t_you_may" ))).isTrue ();
43
43
}
44
44
45
- @ Test (groups = "misc" )
46
- public void shouldExistsLinkForListingCategories () {
47
- assertThat (page .linkWithLabelExists (tr ("t_show_categories_list" )))
48
- .overridingErrorMessage ("should exists link to page for listing categories" )
49
- .isTrue ();
50
- }
51
-
52
45
@ Test (groups = "misc" )
53
46
public void shouldExistsLinkForListingCountries () {
54
47
assertThat (page .linkWithLabelExists (tr ("t_show_countries_list" )))
Original file line number Diff line number Diff line change
1
+ *** Settings ***
2
+ Documentation Verify required elements appearance on the main page from anonymous user
3
+ Library SeleniumLibrary
4
+ Suite Setup Before Test Suite
5
+ Suite Teardown After Test Suite
6
+ Force Tags misc main-page
7
+
8
+ *** Test Cases ***
9
+ Anonymous should see a link for listing categories
10
+ [Tags] category
11
+ Page Should Contain Link link=show list of categories
12
+
13
+ *** Keywords ***
14
+ Before Test Suite
15
+ Open Browser ${SITE_URL } ${BROWSER }
16
+ Register Keyword To Run On Failure Log Source
17
+ Go To ${SITE_URL } /
18
+
19
+ After Test Suite
20
+ Close Browser
You can’t perform that action at this time.
0 commit comments