Commit d965e65f authored by Mesut Güneş's avatar Mesut Güneş Committed by Rémy Coutable

Add a log-out step and expectation to log-in test

parent 4c7e2218
module QA
context 'Manage', :smoke do
describe 'basic user login' do
it 'user logs in using basic credentials' do
it 'user logs in using basic credentials and logs out' do
Runtime::Browser.visit(:gitlab, Page::Main::Login)
Page::Main::Login.act { sign_in_using_credentials }
......@@ -11,6 +11,15 @@ module QA
Page::Main::Menu.perform do |menu|
expect(menu).to have_personal_area
end
Page::Main::Menu.perform do |menu|
menu.sign_out
expect(menu).not_to have_personal_area
end
Page::Main::Login.perform do |form|
expect(form.sign_in_tab?).to be(true)
end
end
end
end
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment