Dave Jarvis' Repositories

git clone https://repo.autonoma.ca/repo/recipe-fiddle.git
<?xml version="1.0"?>
<script>
  <comment>Start at the recipe editor to show how log in works.</comment>
  <visit>https://recipefiddle.com/recipe/</visit>

  <comment>Synchronize with video.</comment>
  <pause delay="5000" />

  <comment>Click the log in button to navigate to the log in page.</comment>
  <click id="nav-login"  delay="1000" />

  <comment>Update the email address input field with the account.</comment>
  <text id="email" delay="1000" >recipefiddle@gmail.com</text>

  <comment>Trigger an email being sent for authentication.</comment>
  <click css="button[name='submit']" delay="1000" />

  <comment>Give time to read the log in message.</comment>
  <pause delay="2500" />

  <comment>Log in to GMail to see the log in link.</comment>
  <visit delay="2000">https://mail.google.com</visit>
  <text id="Email" delay="100" >recipefiddle@gmail.com</text>
  <text id="Passwd" delay="100">ABCabc123$$$</text>
  <click id="signIn" delay="100" />

  <comment>Wait for GMail authentication to complete.</comment>
  <pause delay="2000" />
  <click id=":2n" delay="100" />

  <comment>Wait for the email message with log in link to render.</comment>
  <pause delay="1000" />
  <click link="Recipe Fiddle" />
</script>