Skip to content

Instantly share code, notes, and snippets.

@twalpole
Created July 12, 2017 16:16
Show Gist options
  • Save twalpole/14cd6c69c91b3d54cf2bd994375a019b to your computer and use it in GitHub Desktop.
Save twalpole/14cd6c69c91b3d54cf2bd994375a019b to your computer and use it in GitHub Desktop.
require 'capybara/dsl'
require 'selenium-webdriver'
html = DATA.read
app = proc { |env| [200, { "Content-Type" => "text/html" }, [html] ] }
sess = Capybara::Session.new(:selenium, app)
sess.visit('/')
sess.click_button('Jetzt kaufen')
sess.click_button('Jetzt')
__END__
<!doctype html>
<html>
<body>
<button class="btn btn--highlight _159vaYHuibqRdI3OZTALCW">
<!-- react-text: 182 -->
Jetzt kaufen
<!-- /react-text -->
<!-- react-text: 183 --> — <!-- /react-text -->
<!-- react-text: 184 -->
94,01&nbsp;€
<!-- /react-text -->
<span class="spinner">
</span></button>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment