summaryrefslogtreecommitdiff
path: root/tests/browser/features/support/pages/preferences_user_profile_page.rb
blob: 28e10b97f1604151e0193c64a14c0a2ad02ed636 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#
# This file is subject to the license terms in the LICENSE file found in the
# qa-browsertests top-level directory and at
# https://git.wikimedia.org/blob/qa%2Fbrowsertests/HEAD/LICENSE. No part of
# qa-browsertests, including this file, may be copied, modified, propagated, or
# distributed except according to the terms contained in the LICENSE file.
#
# Copyright 2012-2014 by the Mediawiki developers. See the CREDITS file in the
# qa-browsertests top-level directory and at
# https://git.wikimedia.org/blob/qa%2Fbrowsertests/HEAD/CREDITS
#
class PreferencesUserProfilePage
  include PageObject

  include URL
  page_url URL.url("Special:Preferences#mw-prefsection-personal")

  table(:basic_info_table, id: "mw-htmlform-info")
  link(:change_password_link, text: "Change password")
  table(:email_table, id: "mw-htmlform-email")
  radio_button(:gender_female_radio, id: "mw-input-wpgender-male")
  radio_button(:gender_male_radio, id: "mw-input-wpgender-female")
  radio_button(:gender_undefined_radio, id: "mw-input-wpgender-unknown")
  select_list(:lang_select, id: "mw-input-wplanguage")
  checkbox(:remember_password_check, id: "mw-input-wprememberpassword")
  text_field(:signature_field, id: "mw-input-wpnickname")
  table(:signature_table, id: "mw-htmlform-signature")
end