Special case opus mime detction
[mediawiki.git] / tests / browser / features / step_definitions / create_account_steps.rb
blobd9b4f52a91c6e5285b9554b7718d4131bc880276
1 Given(/^I go to Create account page at (.+)$/) do |path|
2   visit(CreateAccountPage, using_params: { page_title: path })
3 end
5 Then(/^form has Create account button$/) do
6   expect(on(CreateAccountPage).create_account_element).to exist
7 end
9 When(/^I submit the form$/) do
10   on(CreateAccountPage).create_account
11 end
13 Then(/^an error message is displayed$/) do
14   expect(on(CreateAccountPage).error_message_element).to exist
15 end