17 lines
412 B
Ruby
17 lines
412 B
Ruby
module Images
|
|
def imageable_attach_new_file(path, success = true)
|
|
click_link "Add image"
|
|
within "#nested-image" do
|
|
image = find(".image-fields")
|
|
attach_file "Choose image", path
|
|
within image do
|
|
if success
|
|
expect(page).to have_css(".loading-bar.complete")
|
|
else
|
|
expect(page).to have_css(".loading-bar.errors")
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|