I’ve tried a variety of techniques to log in to a website using scripting. For example:
logData 1
SetEventName Goto Login
navigate https://www.example.com/secure/login
logData 1
SetEventName Set Username
setValue id=username testUser
logData 1
SetEventName Set Password
setValue id=password password
logData 1
SetEventName Submit Form
clickAndWait id=signInBtn
//execAndWait document.forms[0].querySelector(‘button[id=signInBtn]’).click()
//submitForm id=signInForm
The id values are correct, I’ve checked multiple times. Every step after “Goto Login” results in “Error: Navigation Error”. Obviously, it fails to log in – If I finish the script off with a “navigate” to a page only accessible by logged in users, I’m sent to a generic, non-logged in page. What is going on?