samear
1
Hi,
I can no longer using the following script to log into our site because we use JavaScript functions instead.
logData 0
setValue id=username user1
setValue id=password password
submitForm name=loginForm
How would I put the following line in wpt scripting?
document.getElementById(“__input1-inner”).value = “username”;
document.getElementById(“__input2-inner”).value = “password”;
document.getElementById(“loginForm”).submit();
Thanks,
-sam
exec and execAndWait are what you’re looking for
exec document.getElementById(“__input1-inner”).value = “username”;
exec document.getElementById(“__input2-inner”).value = “password”;
execAndWait document.getElementById(“loginForm”).submit();
As per slide 38 (last line) of Using WebPageTest - London Web Performance - Google Slides I often grab the element for the submit button and send a click to it instead of using submit
samear
3
Thank you Andy!
Really helpful. it works!
-sam