Skip to content

Instantly share code, notes, and snippets.

@twalpole
Created January 29, 2018 16:28
Show Gist options
  • Save twalpole/b3b4d786a2ffac068cfe049b5baaf3b8 to your computer and use it in GitHub Desktop.
Save twalpole/b3b4d786a2ffac068cfe049b5baaf3b8 to your computer and use it in GitHub Desktop.
Test window_opened_by with FB share window
require 'capybara/dsl'
require 'selenium-webdriver'
require 'capybara'
require 'byebug'
session = Capybara::Session.new(:selenium, nil)
session.visit('https://jsfiddle.net/stichoza/EYxTJ/')
win = session.window_opened_by do
session.within_frame('result') do
session.click_link 'Share'
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment