Google Calendar (Sample App)
The app’s Script code Script CodeExpand source type("""#identifierId""" , """{{email|default:'a@b.c'}}""") click("""#identifierNext""") type("""input[name="password"]""" , """{{password|default:'password'}}""") click("""#passwordNext""") pause(5) runScript(""" var period = "{{period|default:'week'}}"; switch (period) { case "day": window.location.href = "https://calendar.google.com/calendar/r/day?pli=1"; break; case "week": window.location.href = "https://calendar.google.com/calendar/r/week?pli=1"; break; case "month": window.location.href = "https://calendar.google.com/calendar/r/month?pli=1"; break; case "year": window.location.href = "https://calendar.google.com/calendar/r/year?pli=1"; break; case "schedule": window.location.href = "https://calendar.google.com/calendar/r/agenda?pli=1"; break; case […]