Implement extension registration from an extension.json file
[mediawiki.git] / tests / browser / features / support / pages / preferences_appearance_page.rb
blobc24e3862de35a79786493baa33fbd71ce15db256
2 # This file is subject to the license terms in the LICENSE file found in the
3 # qa-browsertests top-level directory and at
4 # https://git.wikimedia.org/blob/qa%2Fbrowsertests/HEAD/LICENSE. No part of
5 # qa-browsertests, including this file, may be copied, modified, propagated, or
6 # distributed except according to the terms contained in the LICENSE file.
8 # Copyright 2012-2014 by the Mediawiki developers. See the CREDITS file in the
9 # qa-browsertests top-level directory and at
10 # https://git.wikimedia.org/blob/qa%2Fbrowsertests/HEAD/CREDITS
12 class PreferencesAppearancePage
13   include PageObject
15   include URL
16   page_url URL.url("Special:Preferences#mw-prefsection-rendering")
18   checkbox(:auto_number_check, id: "mw-input-wpnumberheadings")
19   radio_button(:cologne_blue, id: "mw-input-wpskin-cologneblue")
20   radio_button(:day_mo_year_radio, id: "mw-input-wpdate-dmy")
21   checkbox(:dont_show_aft_check, id: "mw-input-wparticlefeedback-disable")
22   checkbox(:exclude_from_experiments_check, id: "mw-input-wpvector-noexperiments")
23   checkbox(:hidden_categories_check, id: "mw-input-wpshowhiddencats")
24   radio_button(:iso_8601_radio, id: "mw-input-wpdate-ISO_8601")
25   span(:local_time_span, id: "wpLocalTime")
26   radio_button(:mo_day_year_radio, id: "mw-input-wpdate-mdy")
27   radio_button(:modern, id: "mw-input-wpskin-modern")
28   radio_button(:monobook, id: "mw-input-wpskin-monobook")
29   radio_button(:no_preference_radio, id: "mw-input-wpdate-default")
30   text_field(:other_offset, id: "mw-input-wptimecorrection-other")
31   a(:restore_default_link, href: /reset/)
32   select_list(:size_select, id: "mw-input-wpimagesize")
33   select_list(:threshold_select, id: "mw-input-wpstubthreshold")
34   select_list(:time_offset_select, id: "mw-input-wptimecorrection")
35   table(:time_offset_table, id: "mw-htmlform-timeoffset")
36   select_list(:thumb_select, id: "mw-input-wpthumbsize")
37   select_list(:underline_select, id: "mw-input-wpunderline")
38   radio_button(:vector, id: "mw-input-wpskin-vector")
39   radio_button(:year_mo_day_radio, id: "mw-input-wpdate-ymd")
40 end