How to easily capture date and time and insert them in a project

You're viewing a single comment in a conversation. View all the comments
  • 1 Comments

  • Order by
  • set h to :

    Browser.ExecJS("var today = new Date(); today.getHours();")

    set m to:

    Browser.ExecJS("var today = new Date(); today.getMinutes();")

    set s to:

    Browser.ExecJS("var today = new Date(); today.getSeconds();")

    set text to

    zeropad(h,2) &":"& zeropad(m,2) &":"& zeropad(s,2)