ruby - initiate browser in PHP like ROR -


ruby provides methotds initiate browser, open url in browser , parse page contents

browser = watir::browser.new(:firefox) browser.goto("http://example.com") browser.wait  results = browser.text  parsed_results = json.parse(results) 

can such thing in php? if yes how possible?


Comments

Popular posts from this blog

android - Inheriting from Theme.AppCompat* -

broadcastreceiver - android BOOT_COMPLETED not received if not activity intent-filter -

basic authentication with http post params android -