We are trying to build a jmeter testcase which does the following:
- login to a system
- obtain some information and check whether correct.
Where we are facing issues is because there is a captcha while logging into the system. What we had planned to do was to download the captcha link and display, and wait for user to type in the value. Once done, everything goes as usual.
We couldnt find any plugin that can do the same? Other than writing our own plugin, is there any option here?
I was able to solve it myself. The solution is as follows:
JSR223 Parameters for proxy connection setting:
In it, the following code displays the captcha and waits for user input
By vars.put method we can use the captcha variable in any way we want. Thank you everyone who tried to help.