mediawiki-extensions-Visual.../modules/ve-mw/tests/browser/features/support/hooks.rb
Željko Filipin f850ddf73b Rename "test" folder to "tests"
All other repositories have tests in “tests” folder. For more
information see:

http://lists.wikimedia.org/pipermail/qa/2014-July/001663.html
http://lists.wikimedia.org/pipermail/qa/2014-July/001667.html
http://lists.wikimedia.org/pipermail/qa/2014-July/001672.html

Change-Id: Ib1e4fa4b7203bd8217615db1ceac23a329c081f1
2014-07-15 18:00:32 -07:00

18 lines
462 B
Ruby

at_exit do
$browser.close unless ENV["KEEP_BROWSER_OPEN"] == "true"
end
#This is for the multiedit test
Before("@edit_user_page_login") do
if (!$edit_user_page_login or !(ENV["REUSE_BROWSER"] == "true")) and @browser
step "I am logged in"
step "I go to the browser specific edit page page"
step "I edit the page with Editing with"
$edit_user_page_login=true
end
end
Before("@language_screenshot") do |scenario|
@scenario = scenario
end