Sha256: 2de647ea4e0cc88e3293af23f6fb37aa385b2397bfbba6c64fde428523abdc9e

Contents?: true

Size: 586 Bytes

Versions: 1

Compression:

Stored size: 586 Bytes

Contents

# GogoDriver

Super simple web driver.

## 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.

```
require 'gogo_driver'
include GogoDriver

go('https://www.facebook.com/')

find('input#email').fill('mail@gogotanaka.com')

find('input#pass').fill('password')

submit

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

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
gogo_driver-0.0.3 README.md