Class: Ubiquitously::Queness::Account
- Inherits:
-
Service::Account
- Object
- Base
- Service::Account
- Ubiquitously::Queness::Account
- Defined in:
- lib/ubiquitously/services/queness.rb
Instance Attribute Summary
Attributes inherited from Service::Account
#credentials, #ip, #logged_in, #password, #user, #username
Instance Method Summary collapse
Methods inherited from Service::Account
#access_token, #agent, #cookies?, #credentials?, #initialize
Methods included from Account::Authorizable
Methods included from Account::Loggable
Methods included from Account::Restful
Methods inherited from Base
Methods included from SubclassableCallbacks
Constructor Details
This class inherits a constructor from Ubiquitously::Service::Account
Instance Method Details
#login ⇒ Object
4 5 6 7 8 9 10 11 12 13 |
# File 'lib/ubiquitously/services/queness.rb', line 4 def login page = agent.get("http://www.queness.com/") form = page.form_with(:action => "http://www.queness.com/login.php") form["login[username]"] = username form["login[password]"] = password form.checkboxes.first.check page = form.submit (page.parser.css(".error").text !~ /Incorrect/i) end |