Script not executing or stopping too early
|
09-23-2016, 08:16 AM
Post: #1
|
|||
|
|||
Script not executing or stopping too early
I'm trying to write a script that logs in, and after login clicks on a button. I want to measure the whole process from the start of entering credentials, to the end of navigation to the second page after logging in. This is my script below. I'm using a private instance so can't post the result, but I explain below the 2 different results that I get:
//login logData 0 navigate https://e2e.qbo.intuit.com logData 1 execAndWait $('#ius-userid').val('###'); $('#ius-password').val('###'); $('#ius-sign-in-submit-btn').click(); setDOMElement stepid=step1 execAndWait document.querySelector('ha-flow-step[stepid="step0"] .ha-button-primary').click(); ### = data i scrubbed There's 2 problems: 1 - If I run the script as is above, it doesn't complete the click of the button (the last line). It just sits on the page that loads after login. 2 - I also want to measure just the 2nd page loading, ignoring everything before it (in a separate script) and if I try this by moving the logData 1 down to the line above setDOMElement I get error "First View: Test Data Missing" with no results to look at. Any tips on what I may be doing wrong? |
|||
09-25-2016, 12:22 AM
Post: #2
|
|||
|
|||
RE: Script not executing or stopping too early
To ask the really dumb question…
Does this line work when you try it in DevTools? Code: document.querySelector('ha-flow-step[stepid="step0"] .ha-button-primary').click(); Also if you capture the response bodies, is that element in there (I came across a problem with another site where the WPT agent was getting a slightly different page to the one I tested against in my browser) No idea on #2, I've not seen that happen before - might test it with one of my scripts Andy Using WebPageTest - http://usingwpt.com/ |
|||
09-27-2016, 12:31 AM
(This post was last modified: 09-27-2016 01:09 AM by maryb86.)
Post: #3
|
|||
|
|||
RE: Script not executing or stopping too early
(09-25-2016 12:22 AM)andydavies Wrote: To ask the really dumb question… Thanks for taking a look ![]() Hm, I can't seem to get the bug down exactly. Here is what I have written down. Would be great if someone could take a look and comment on why this behaviour is happening: Succeeded, completed all steps. https://www.webpagetest.org/result/160923_4M_10K4/ logData 0 navigate http://www.yahoo.com logData 1 setValue id=uh-search-box apple navigate http://www.google.com Failed, stopped after navigating to yahoo.com https://www.webpagetest.org/result/160923_38_10E6/ logData 0 navigate http://www.yahoo.com logData 1 execAndWait document.querySelector('#uh-search-box').value='apple’; navigate http://www.google.com Partially succeeded, failed to enter ‘apple' https://www.webpagetest.org/result/160923_72_10KB/ logData 0 navigate http://www.yahoo.com logData 1 exec document.querySelector('#uh-search-box').value='apple’; navigate http://www.google.com |
|||
« Next Oldest | Next Newest »
|
User(s) browsing this thread: 1 Guest(s)