require 'rubygems'
require 'nokogiri'
require 'mechanize'
agent = Mechanize.new
page = agent.get('https://www.instagram.com/accounts/login/')
forms = page.forms.first
pp form
I am trying to locate the form to login to the instagram website. I cannot seem to get mechanize to locate the form even though it should be the only one on the page. When I pretty print the page I get back blank output.