I am trying to automate my chrome extension addition to chrome. I am able to click on add extension from chrome web store using apple script but I am able to click on the Add extension button.
My current code is tell application "System Events" tell application process "Google Chrome" set frontmost to true --click button 1 of group 1 of sheet1 of window 2 keystroke "´" tell window 1 tell (group whose title is "Add "Symantec Extension"?") get properties tell button 1 perform action "AXPress" end tell end tell end tell end tell end tell
