ここでは AppleScript で Google Chrome ブラウザを操作してウェブサイトを開くコードを紹介します。
もくじ
AppleScript で Google Chrome ブラウザを操作してウェブサイトを開くコード
tell application "Google Chrome"
make new window
tell front window
tell active tab
set URL to "https://appletools.blog/"
end tell
end tell
end tell
これを実行すると、新規ウインドウが作られ対象の URL(この場合は https://appletools.blog/ )へ接続します。