Displaying 1 result from an estimated 1 matches for "web_ag".
Did you mean:
cebag
2009 May 05
3
Only partially reading a page!
I am trying to get a page which includes a form, but the form is
missing from the WWW::Mechanize::Page object. I retrieve it via:
page = web_agent.submit(a_different_form)
For debugging this problem, I then immediately write the resulting
page to two different logs:
File.open(''big.html'',''wb'') { |f| f.write(page.body) }
File.open(''little.html'',''wb'') { |f| f.wr...