Skip to content

Instantly share code, notes, and snippets.

View lukewduncan's full-sized avatar
👶

Luke Duncan lukewduncan

👶
View GitHub Profile
@alovak
alovak / fixlinks
Last active January 19, 2022 16:52
notion.so export to html
@iloveitaly
iloveitaly / capybara_fill_stripe_elements.rb
Created March 4, 2017 21:21
Fill in a Stripe Elements (https://stripe.com/docs/elements) credit card field using capybara
def fill_stripe_elements(card)
using_wait_time(15) { within_frame('stripeField_card_element0') do
card.to_s.chars.each do |piece|
find_field('cardnumber').send_keys(piece)
end
find_field('exp-date').send_keys("0122")
find_field('cvc').send_keys '123'
find_field('postal').send_keys '19335'
end }