Files
mozo-backend/spec/acceptance_steps/users/supplier_info_steps.rb
T
2015-01-13 13:38:52 +01:00

10 lines
250 B
Ruby

step "the user clicks on the table number info in the top right corner" do
find('.top-menu .table-number').click
end
step "the user sees the supplier information popup" do
within '.modal' do
page.should have_content @supplier.name
end
end