mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-11 01:44:34 +08:00
11 lines
364 B
Ruby
11 lines
364 B
Ruby
# frozen_string_literal: true
|
|
|
|
Given('Settings page of BioSistemika Process team of a Karli Novak user') do
|
|
visit '/users/settings/teams/1'
|
|
end
|
|
|
|
Then('I should see {string} massage of {string} modal window') do |massage, modal|
|
|
modal_object = page.find('.modal-content', text: modal)
|
|
expect(modal_object).to have_selector '.results-wrap', text: massage
|
|
end
|
|
|