In our current test plan we request a product page that contains AJAX. To get this AJAX data we use an xpath extractor, then build a new url path and request the ajax. The problem is we have a constant throughput timer which slows down these requests, when in reality we want them to all happen at once. Our test plan is as follows -
View Product Fragment
-HTTP Get Product Page
--build AJAX request
-HTTP Get AJAX information
Master Test File
-Call Product Fragment
-constant throughput timer (1 request per minute)
Is there any way to override the constant throughput timer from within the View Product Fragment?
I've tried nested controllers/timers but none of them seem to work.