File tree Expand file tree Collapse file tree 3 files changed +20
-2
lines changed
java/ru/mystamps/web/support/togglz
webapp/WEB-INF/views/site
test/robotframework/togglz Expand file tree Collapse file tree 3 files changed +20
-2
lines changed Original file line number Diff line number Diff line change @@ -55,7 +55,10 @@ public enum Features implements Feature {
55
55
56
56
@ Label ("/site/index: search by catalog in collection" )
57
57
@ EnabledByDefault
58
- SEARCH_IN_COLLECTION ;
58
+ SEARCH_IN_COLLECTION ,
59
+
60
+ @ Label ("/site/index: feature to check that Togglz works" )
61
+ ALWAYS_DISABLED ;
59
62
60
63
public boolean isActive () {
61
64
return FeatureContext .getFeatureManager ().isActive (this );
Original file line number Diff line number Diff line change @@ -197,7 +197,7 @@ <h4 class="panel-title" th:text="#{t_search_by_catalog}">Search by catalog</h4>
197
197
< div class ="row ">
198
198
< footer class ="col-sm-12 text-right ">
199
199
< i class ="glyphicon glyphicon-envelope "> </ i >
200
- < a href ="
mailto:[email protected] "
title ="
Write e-mail "
th:href ="
|mailto:#{t_site_author_email}| "
th:title ="
#{t_write_email} "
th:text ="
#{t_site_author_name} "
> Slava Semushin
</ a > , 2009-2019
200
+ < a href ="
mailto:[email protected] "
title ="
Write e-mail "
th:href ="
|mailto:#{t_site_author_email}| "
th:title ="
#{t_write_email} "
th:text ="
#{t_site_author_name} "
> Slava Semushin
</ a > , 2009-2019
< span id =" always-disabled-element " togglz:active =" ALWAYS_DISABLED " > :-/ </ span >
201
201
</ footer >
202
202
</ div >
203
203
</ div >
Original file line number Diff line number Diff line change
1
+ *** Settings ***
2
+ Documentation Verify that togglz works
3
+ Library SeleniumLibrary
4
+ Suite Setup Before Test Suite
5
+ Suite Teardown Close Browser
6
+ Force Tags togglz misc
7
+
8
+ *** Test Cases ***
9
+ Extra characters should never be shown if Togglz works
10
+ Page Should Not Contain Element id=always-disabled-element
11
+
12
+ *** Keywords ***
13
+ Before Test Suite
14
+ Open Browser ${SITE_URL } ${BROWSER }
15
+ Register Keyword To Run On Failure Log Source
You can’t perform that action at this time.
0 commit comments