I figured out how to open a web page, but I want to submit a form to google and then get the html results. how can I do this? I want to take those page results so I can parse the data myself.
chrome = Application("Google Chrome");
win = chrome.Window().make();
chrome.windows[0].tabs[0].url = "https://google.com";
// submit form button to search for "test"
//generated_html_from_chrome = ??