The old message, being 2048 chars long, apparently sometimes tripped up Ferrum or Chrome itself. The new, shorter, message does that less or not at all. It's still long enough, though, as the way we determine if a status message is "too long" is by height only, so line-breaks work.
75 lines
1.9 KiB
Ruby
75 lines
1.9 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
Then /^I expand the publisher$/ do
|
|
click_publisher
|
|
end
|
|
|
|
And /^I close the publisher$/ do
|
|
find("#publisher .md-cancel").click
|
|
end
|
|
|
|
Then /^the publisher should be expanded$/ do
|
|
find("#publisher")["class"].should_not include("closed")
|
|
end
|
|
|
|
When /^I click to delete the first uploaded photo$/ do
|
|
image_count = all(".publisher_photo img", wait: false).count
|
|
within "ul#photodropzone" do
|
|
first("img").hover
|
|
find(".x", match: :first).trigger "click"
|
|
end
|
|
page.assert_selector(".publisher_photo img", count: image_count - 1)
|
|
end
|
|
|
|
Then /^I should see an uploaded image within the photo drop zone$/ do
|
|
expect(find("#photodropzone img")["src"]).to include("uploads/images")
|
|
end
|
|
|
|
Then /^I should not see an uploaded image within the photo drop zone$/ do
|
|
page.should_not have_css "#photodropzone img"
|
|
end
|
|
|
|
Then /^I should not be able to submit the publisher$/ do
|
|
expect(publisher_submittable?).to be false
|
|
end
|
|
|
|
Then /^I should see "([^"]*)" in the publisher$/ do |text|
|
|
expect(page).to have_field("status_message[text]", with: text)
|
|
end
|
|
|
|
When /^I write the status message "([^"]*)"$/ do |text|
|
|
write_in_publisher(text)
|
|
end
|
|
|
|
When /^I insert an extremely long status message$/ do
|
|
write_in_publisher("long post\n" * 15)
|
|
end
|
|
|
|
When /^I append "([^"]*)" to the publisher$/ do |text|
|
|
append_to_publisher(text)
|
|
end
|
|
|
|
When /^I type "([^"]*)" into the publisher$/ do |text|
|
|
type_into_publisher(text)
|
|
end
|
|
|
|
When /^I attach "([^"]*)" to the publisher$/ do |path|
|
|
upload_file_with_publisher(path)
|
|
end
|
|
|
|
And /^I submit the publisher$/ do
|
|
submit_publisher
|
|
end
|
|
|
|
When /^I click the publisher and post "([^"]*)"$/ do |text|
|
|
click_and_post(text)
|
|
end
|
|
|
|
When /^I post an extremely long status message$/ do
|
|
click_and_post("long post\n" * 15)
|
|
end
|
|
|
|
When /^I select "([^"]*)" on the aspect dropdown$/ do |text|
|
|
find("button.dropdown-toggle").click
|
|
find(".dropdown-menu li", text: text).click
|
|
end
|