I came across some problem in Jmeetere if you guys have some advice please shave with me. I send request for my application, and i click after the link open, in Response data i got Script is disabled. Please click Submit to continue
Submit . the submit in response data is a click button, if i click it, it takes to the application site. I tried BeanShell PreProcessor, but still couldn`t solve it.
Thanks
View Result Tree with HTML view is very limited, as JMeter Reference specifies:
The HTML view attempts to render the response as HTML. The rendered HTML is likely to compare poorly to the view one would get in any web browser; however, it does provide a quick approximation that is helpful for initial result evaluation. Images, style-sheets, etc. aren't downloaded.
This view will not run any JS scripts either. In your case for instance, it looks like the page returned as a result of the HTTP request depends on JavaScript, and thus developers of that page added a tag, which is displayed if you try to load the page where JavaScript is not present. If you look at Text view of the page, you will see the entiere returned page, and it will contain something like:
....
<noscript>Script is disabled. Please click Submit to continue<button value="Submit" type="submit"/></noscript>
...
When you switch to HTML View, it will only display that section, since JavaScript is not present.
Bottom line: HTML view is very limited, and does not support your page. Use Text view instead to understand what your script returns.