Skip to content
This repository was archived by the owner on Oct 23, 2025. It is now read-only.
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 25 additions & 0 deletions spec/features/Research_by_attribute.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
feature 'Research by attribute' do

scenario 'for search UV by responsable' do
visit '/'
click_on 'Rechercher par attributs'
select 'UV', :from => 'Corpus'
select 'Responsable', :from => 'Nom'
select 'Aurélien BENEL', :from => 'Valeur'
click_on 'Rechercher'
click_on 'IF14...'
end

scenario 'for search UV by two intervenants' do
visit '/'
click_on 'Rechercher par attributs'
select 'UV', :from => 'Corpus'
select 'Intervenant', :from => 'Nom'
select 'Ines Di Loreto', :from => 'Valeur'
click_on '+'
select 'Intervenant', :from => 'Nom'
select 'Pascal Salembier', :from => 'Valeur'
click_on 'Rechercher'
click_on 'IF10...'
end
end