{%- from 'macros' import hash_bang with context -%}
{%- from 'macros' import make_maximized with context -%}
{{ hash_bang() }}
-- Copyright 2021 The Chromium Authors
-- Use of this source code is governed by a BSD-style license that can be
-- found in the LICENSE file.
-- This script cycles through a set of N sites staying on each site for
-- |per_navigation_delay| seconds before moving on to the next site. The full
-- set of sites of visited |navigation_cycles| times before the script exits.
-- Navigation happens by creating a new tab and then closing it.
tell application "{{ browser }}"
-- If {{ browser }} is already started then just bring
-- it to the forefront otherwise open it.
if it is running then
reopen
else
activate
end if
set w to first window
if it is running then
activate
{{ make_maximized() }}
set sites to { {{ sites }} }
repeat with i from 1 to {{ navigation_cycles }}
repeat with site in sites
set URL of active tab of w to site
delay {{ per_navigation_delay }}
end repeat
end repeat
activate
end if
end tell