I'm using webpagetest.org to do performance testing. To reach the page I need to test, I need to enter some text and click on the next button as I cannot reach that page directly.
This is the link to the sample app
https://angular-z3shbr.stackblitz.io/
I'm trying to enter some text into the input by using
document.querySelector('input').value= 'Test'
The issue I'm facing is the next button is not getting enabled even after a value is entered in the textbox
The Webpage script is
execAndWait document.querySelector('input').value = "test";
clickAndWait selector="next_button"
I tried setValue for the input but it led to the same result