Hi,
I have this basic code snippet which loads google in my GUI and clicks the 'Im Feeling Lucky' Button. - This works fine by the way.
_IENavigate($oIE, "https://www.google.co.uk")
_IEAction($oIE, "stop")
Local $oSubmit = _IEGetObjByName($oIE, "btnI")
_IEAction($oSubmit, "click")
_IELoadWait($oIE)
Please could anyone tell me how I'd do the above but using chrome as the browser instead of IE? I know there is a Chrome UDF but I have no idea how to use it. Or is there another way to do this?
Thanks
am632