Skip to content

Commit

Permalink
TEST : Delete a picture from a document (see #187)
Browse files Browse the repository at this point in the history
Co-Authored-By: Fabien Petit<petifa1@users.noreply.github.com>
  • Loading branch information
nitram35 committed Jun 19, 2024
1 parent 55cbefa commit 72ca9d9
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 0 deletions.
4 changes: 4 additions & 0 deletions features/step_definitions/context.rb
Original file line number Diff line number Diff line change
Expand Up @@ -134,3 +134,7 @@
Soit("un document que l'on consulte") do
visit '/146e6e8442f0405b721b79357d00d0a1'
end

Soit ("une image {string} dans une glose") do |image_name|
attach_file("image-input", File.expand_path("./docs/#{image_name}"), make_visible: true)
end
9 changes: 9 additions & 0 deletions features/step_definitions/event.rb
Original file line number Diff line number Diff line change
Expand Up @@ -90,3 +90,12 @@
click_on_icon('typeIcon')
fill_element('#searchType', type)
end

Quand("j'essaye de supprimer l'image {string} d'une glose") do |image_name|
image = find('img[alt="' + image_name + '"]')
delete_button = image.find(:xpath, 'following-sibling::button[contains(@class, "delete-image")]')
delete_button.click
popup = find('#confirmation-popup', visible: true)
yes_button = popup.find('button.confirm-yes')
yes_button.click
end
4 changes: 4 additions & 0 deletions features/step_definitions/outcome.rb
Original file line number Diff line number Diff line change
Expand Up @@ -106,3 +106,7 @@
expect(find('.list-group')).not_to have_content "Ethnography/Interview"
end


Alors("je ne vois pas l'image {string}") do |image_name|
expect(page)
end

0 comments on commit 72ca9d9

Please sign in to comment.