summaryrefslogtreecommitdiff
path: root/tests/browser/features/step_definitions/preferences_editing_steps.rb
blob: ad29a745531013be8db3751de0f15b74c6926f88 (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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
#
# 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
#
When(/^I click Editing$/) do
  visit(PreferencesPage).editing_link_element.when_present.click
end

Then(/^I can select edit area font style$/) do
  on(PreferencesEditingPage).edit_area_font_style_select_element.when_present.should exist
end

Then(/^I can select live preview$/) do
  on(PreferencesEditingPage).live_preview_check_element.when_present.should exist
end

Then(/^I can select section editing by double clicking$/) do
  on(PreferencesEditingPage).edit_section_double_click_check_element.when_present.should exist
end

Then(/^I can select section editing by right clicking$/) do
  on(PreferencesEditingPage).edit_section_right_click_check_element.when_present.should exist
end

Then(/^I can select section editing via edit links$/) do
  on(PreferencesEditingPage).edit_section_edit_link_element.when_present.should exist
end

Then(/^I can select show edit toolbar$/) do
  on(PreferencesEditingPage).show_edit_toolbar_check_element.when_present.should exist
end

Then(/^I can select show preview before edit box$/) do
  on(PreferencesEditingPage).preview_on_top_check_element.when_present.should exist
end

Then(/^I can select show preview on first edit$/) do
  on(PreferencesEditingPage).preview_on_first_check_element.when_present.should exist
end

Then(/^I can select to prompt me when entering a blank edit summary$/) do
  on(PreferencesEditingPage).forced_edit_summary_check_element.when_present.should exist
end

Then(/^I can select to warn me when I leave an edit page with unsaved changes$/) do
  on(PreferencesEditingPage).unsaved_changes_check_element.when_present.should exist
end