Skip to content

Instantly share code, notes, and snippets.

Created August 24, 2015 11:48
Show Gist options
  • Save anonymous/b2ad66641cbc9f467b10 to your computer and use it in GitHub Desktop.
Save anonymous/b2ad66641cbc9f467b10 to your computer and use it in GitHub Desktop.
require 'nokogiri'
require 'mechanize'
require 'open-uri'
agent = Mechanize.new
agent.get('https://fetlife.com/login')
agent.page.form.nickname_or_email = "chuchu"
agent.page.form.password = "pica"
agent.page.form.submit
agent.page.link_with(:text => 'Porto').click
agent.page.link_with(:text => 'view more →').click
urltemp = agent.page
parser = Nokogiri::HTML(open(urltemp)) <--- nope.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment