mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Echo
synced 2024-12-04 20:28:49 +00:00
f9d2aacd67
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
16 lines
643 B
Ruby
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
|