I am trying to fill in a user form (Shipping address page) and for some reason I cannot use the setValue script to fill the form. Test below has the script which I ran, but it does not work.
Suggest any alternate scripts that can help fill up the form…
Of course, “foo” must be the ID attribute of the input element whose value should be set to “bar”. Repeat for each form field.
If you want to try the JS approach with getElementById, make sure you’re using it with the exec[AndWait] command and not just writing pure JS in the script block.
Why do you need four navigations? Does each navigation set some state for the subsequent page? If so, could you replicate the state by setting cookies instead? If not, remove the navigations.
What exactly are you trying to measure? Even though the script isn’t working, the intention seems to be to record all network activity from home page through the checkout page, with all user interactions in between. WebPageTest can probably do this if you really wanted, but I doubt that’s your intention. You are probably looking for results that show you the performance of the final checkout step and/or possibly each intermediate step along the way. In either case, you really need to refactor this script to focus on one thing at a time. Having a few smaller scripts that perform discrete tests is much easier to manage not to mention analyze. It also makes debugging a lot easier as opposed to a monolithic script.
Finally, you have some syntax errors/mistakes.
logData is enabled by default, so setting it to 1 is a no-op. Do you mean to disable it and then re-enable later?
try to limit your script to one clickAndWait. In my experience, this command is the last thing before re-enabling logData so you can measure the effect of clicking.
you should really only need a single navigate command. If you think you need more, break apart your test into multiple smaller tests.
clickAndWait class=button add Is “add” another class on the button? The script is whitespace delimited, so it’s probably ignored if not erroring out. clickAndWait takes one argument, key=value pair. This happens again with the start-checkout button.
execAndWait can take any arbitrary JS code. If you’re having difficulty with the WPT commands, convert them into JS code and just execAndWait a long chain of ; delimeted JS statements. For example:
I know I have to clean up the scripts Reason I am using 4 different navigation and click and wait is that each page in shopping cart flow sets various session elements and cookies which is tough to mock up with set cookie. In other words there are too many cookies to set. My intent is to measure the performance of last page in checkout (Review and Pay page), but I am unable to fill the form so stuck in shipping page. I added a ; to javascript and fixed the button add class name but still unable to fill the form.
I can see that the WPT script goes all the way to shipping page so script is fine. Only line that does not work is the line below where I am trying to fill in the form elements. If i am able to fill up the form I can proceed to the next page in the flow.
Any reasons you can think of which prevents me from filling the form, like javascript errors, secure page?