pwaldhauer / amazon-account-crawler

Crawls amazon.de account
http://knuspercode.de
32 stars 14 forks source link

Form namechange #16

Closed thedrayman closed 8 years ago

thedrayman commented 8 years ago

logged_in_page = page.form_with(:id => 'ap_signin_form') do |f| is not working anymore.

Seem's Amazon changed the form name. I cangend this line to: logged_in_page = page.form_with(:name => 'signIn') do |f|

This is working at the moment.

pwaldhauer commented 8 years ago

Could you create a pull request please? This would be much appreciated!

thedrayman commented 8 years ago

Pull request done! Thanks!