mediawiki-extensions-Echo/tests/browser/features/step_definition/no_javascript.rb
Stephane Bisson f9d2aacd67 Browser tests: fix nojs tests
Since 79e095fd8a609b71937057034ff5801c13180137,
modern js experience is mostly controlled by feature
detection instead of user agent sniffing.

This broke the Echo nojs browser tests and the
mwext-mw-selenium job is now failing on ALL Echo patches.

This change introduces a user agent string that is
both still considered a nojs browser by RL and a
desktop browser by MF.

Change-Id: I34e8d9f0d879b404d95e674814744562fd57b397
2016-04-19 14:43:15 +00:00

16 lines
643 B
Ruby

# This test has no javascript
# Therefore this test has no AJAX
# Therefore it should run without any "when_present" clauses
# If you need a "when_present" to make the test run, that is a bug
Given(/^I am using a nojs browser$/) do
# The following user-agent string contains:
# SymbianOS: for RL to NOT load the modern experience
# SMART-TV-SamsungBrowser: to bypass mobile-frontend and stay on the desktop site
browser_factory.override(browser_user_agent: 'SymbianOS,SMART-TV-SamsungBrowser')
end
Given(/^I am on Special Notifications page$/) do
expect(on(SpecialNotificationsPage).firstHeading).to match('Notifications')
end