Skip to content

Instantly share code, notes, and snippets.

@aronanda
Last active June 7, 2020 22:28
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save aronanda/edf6b0226975d3f8ead9c82fac45b5d0 to your computer and use it in GitHub Desktop.
Save aronanda/edf6b0226975d3f8ead9c82fac45b5d0 to your computer and use it in GitHub Desktop.
def visit_twitter_and_log_in
visit 'https://cards-dev.twitter.com/validator'📁
find('input.js-username-field').set(ENV['TWITTER_USERNAME'])
find('input.js-password-field').set(ENV['TWITTER_PASSWORD'])
click_on('Log in')
end
def enter_url_and_click_preview(url)
find('input.FormControl').set(url)
click_on('Preview card')
result = has_content?('Page fetched successfully')
visit 'https://cards-dev.twitter.com/validator'📁
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment