Sha256: f3ae57f825beb06a64b3557d8766867a0c557ac62ae659e51f455a3e7ce8e2ab

Contents?: true

Size: 725 Bytes

Versions: 2

Compression:

Stored size: 725 Bytes

Contents

# GogoDriver

Super simple web driver.

[![Gyazo](http://i.gyazo.com/511b5265c67d41fc2cd7394c1eee3b7a.gif)](http://gyazo.com/511b5265c67d41fc2cd7394c1eee3b7a)

## Installation

[1] Install gem as you like.

    $ gem install gogo_driver

[2] Install chromedriver. Below is the MacOS example.

    $ brew install chromedriver


## Demo

Let me show how to login Facebook.

```rb
require 'gogo_driver'

driver = GogoDriver.new('https://www.facebook.com/')
driver.find('input#email').fill('mail@gogotanaka.com')
driver.find('input#pass').fill('password')
driver.submit

if driver.has_text?('メールアドレスが正しくありません')
  # ログインエラー後の処理
else
  # ログイン成功時の処理
end
```

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
gogo_driver-0.1.1 README.md
gogo_driver-0.1.0 README.md