Hi All,
Can anyone help me with testing a page in a multistep process. I have multiple steps to complete a process. Requires to go to page 1 fill in some values post which takes me to page 2, and so on till page 5. I want to measure performance of each page.
I am successfully able to test the performance of page 1 but could not do that for other steps.
I am running a private instance of web page test and using chrome for test. Here is how my script look like
logData 0
// bring up the 1 page, disable logging as i need to log for step 2 only
navigate http://mydomain/1
// setup values for different fields in page 0 using
// setvalue or javascript (i have some radio buttons & dropdown, using javascript for that)
setValue id=aa 1234
exec document.getElementById(“bb”).checked = “true”
// all values set, click submit
clickAndWait id=btnSubmit
// moving to 2 page start logging.
logData 1
I get no results (image attached). I get the times but no waterfall of files getting downloaded even for the first view.
I have tried added the following two lines to script but still no help. The submit should take me the 2 page, so navigating it to 2 page is not required.
sleep 10
navigate http://mydomain/2
Thanks in advance.