Can someone help with this? Trying to launch a webpage in kiosk mode using Chrome that needs authentication and trying to script it, but it won’t fill in the credentials when the dialog pops up in Chrome.
delay 4
tell application "Finder"
activate
end tell
tell application "Google Chrome" (Also tried here System Events, Google Chrome Helper or System Events to tell process “Google Chrome”)
activate
delay 0.3
keystroke "username"
keystroke tab
keystroke "password"
keystroke return
end tell
Thanks,
Dan