I'm relatively new to Ruby and Mechanize but i'm having some difficulty with an asp website
URL: http://www.adecco.co.uk/careercentre/job-search-results.aspx?kws=&pstc=&cty=&prvnm=&pdx=1 agent = Mechanize.new page = agent.get('http://www.adecco.co.uk/careercentre/job-search-results.aspx?kws=&pstc=&cty=&prvnm=&pdx=1') puts page.body I was working through the examples from the Mechanize website the thing is the HTML I get back via Mechanize is very different from what I get using view source in my browser, I need the finished HTML?
Update
I'm not quite sure what to do here since the problem is actually with the fact that the page renders the content using jquery afterwards so i've ended up using Selenium to grab the page with the correct html, neither of these answers are actually wrong so i've upvoted both, but neither actually solve the problem?
Thanks
Marc