README.md in amazon_auth-0.6.0 vs README.md in amazon_auth-0.7.0

- old
+ new

@@ -1,9 +1,9 @@ # AmazonAuth [![Gem Version](https://badge.fury.io/rb/amazon_auth.svg)](https://badge.fury.io/rb/amazon_auth) -[![Build Status](https://travis-ci.org/kyamaguchi/amazon_auth.svg?branch=master)](https://travis-ci.org/kyamaguchi/amazon_auth) +[![CircleCI](https://circleci.com/gh/kyamaguchi/amazon_auth.svg?style=svg)](https://circleci.com/gh/kyamaguchi/amazon_auth) Sign In Amazon using Capybara and Selenium ![amazon_auth_login](https://cloud.githubusercontent.com/assets/275284/25064724/7f5faae4-223b-11e7-9fc6-4a82d1d727ab.gif) @@ -29,11 +29,11 @@ - chromedriver Before running, you need to **download chromedriver**. And you may need to **update chromedriver regularly**. -Please download latest chromedriver_xxx.zip from http://chromedriver.storage.googleapis.com/index.html and place it somewhere on your PATH. +Please download latest chromedriver_xxx.zip from https://chromedriver.storage.googleapis.com/index.html and place it somewhere on your PATH. ``` mv ~/Downloads/chromedriver /usr/local/bin/ ``` @@ -118,33 +118,14 @@ client = AmazonAuth::Client.new(debug: true) ``` ### Use Firefox -This gem may not work with newer versions of Firefox. -Check README of [capybara](https://github.com/teamcapybara/capybara). - -Firefox (<= 47.0.2) may work better. - -[Download Firefox](https://ftp.mozilla.org/pub/firefox/releases/) -Don't forget to disable automatic updates of Firefox. - -You may also need geckodriver. -This may need to be older depending on the version of selenium-webdriver. - -[Download geckodriver](https://github.com/mozilla/geckodriver/releases) - -If the browser doesn't work, try selenium-webdriver version '~> 2.0' or different version of geckodriver/Firefox. - In console, ``` client = AmazonAuth::Client.new(driver: :firefox) ``` - -## TODO - -- [Idea] Hook `submit_signin_form` after every `visit` and `click` action ## Development Use _.env.development_ instead of _.env_ in development.