I am trying to perform load testing on particular application form of a portal using JMeter tool. I have recorded the whole scenario using blazemeter tool and exported it into .jmx file. In the JMeter tool, I have imported the file, able to login to the portal through JMeter, and parameterized the whole fields required to fill the application form.The problem is at last, request of all the data against those field is going but in the response I am getting "Data Failed", ultimately unable to submit the form through JMeter.This can be due to the pop-up which can not be recorded by blazemeter but it pops up at the time of submission on the actual portal, so **how to handle that pop up in JMeter to submit the form?**I am using apache-JMeter 5.2.1.I am also attaching the screenshots for reference. I am looking forward for help.pop up shown on windowrequest data shown in imagePop-up shown on actual windowLogged in successfully
How to handle pop-ups in Jmeter automation tool?
821 Views Asked by Harshita Gupta At
2
There are 2 best solutions below
0
Harshita Gupta
On
link for the har file of real browser: [https://drive.google.com/file/d/1_zopIDpOjniqBsXtcDs53Zujzv62UxYt/view?usp=sharing][1]
link for .jmx file: [https://drive.google.com/file/d/1sZWeN3OfXxjvHlGn8bAjzGyP4Kq0TqwV/view?usp=sharing][1]
I am unable to handle confirmation pop-up (in javascript) through JMeter tool.
Related Questions in UNIT-TESTING
- How to write tests for classes with inheritance
- PHPunit call magic methods
- Convert IEnumerable to IObservable with variable Period
- How to a run specific code before & after each unit test in Python
- Unit testing a class A that derives from an abstract class B
- Is there another way to unit test business logic in mvc
- Some of my tests show prepended with junit.framework
- Selenium Driver Service not found exception
- Can not convert from Class<PowerMockRunner> to Class<? extends Runner>
- AngularJS Unit Testing - multiple mocks and providers
- How to use Sinon.js FakeXMLHttpRequest with superagent?
- Get Mock with AutoMock.Create<>()
- Mock service that takes unitOfWork in constructor
- Cleanest method for creating a pytest test fixture that takes in dynamic text data
- g++ 5.1.0 not building project, clang shows unknown error
Related Questions in LOAD-TESTING
- JMeter Requests are concurrent requests or sequential requests?
- PhantomJS load same page multiple times does not work, cannot clear cache
- ms loadtest from another project / dll
- Jmeter bottleneck
- Funkload Load Testing Implementation
- How to increase the request per second on amazon EC2 T2.micro instance?
- How to run Jmeter tests from bamboo?
- Advantages of Ultimate Thread group over normal thread group in jmeter
- Is there a way to automate Jmeter to run a number of testplans
- Which is the best performance testing tool when i dont know the client application behaviour. As i am going to have number of web based clients
- How can I simulate load/traffic on my local machine
- How to optimize the distribution of load created by Locust
- How to extract All of reg expression matches from html page via JMeter
- Is it possible to execute a load test, which uses a web test plugin by using MSTest command line?
- how to get transactions number reduced with Loadrunner Controller
Related Questions in JMETER-5.0
- Jmeter throwing "SocketException: Connection Reset" error on 200 user load test which cant be found in server logs
- Jmeter : How to upload dynamic excel file which has different data and load test with Jmeter
- Run 2 CSV file for 2 HTTP requests in Jmeter
- JMeter - HTTPS proxy recorder - Cannot find keytool application and no keystore was provided
- JMeter WebDriver Sampler doesn't work and doesnt have headless
- JMeter MergeResults is not handling timeStamp label correctly (millis)
- How do I achieve a certain TPS in Jmeter
- In jmeter, can we use few parameters with in what we declared in the HTTP request parameter section
- if controller not working when I use ${status} == true
- Jmeter-Springboot-Mysql-ec2 Hikari connection pool - Connection not available
- NAS Folder Location
- JMeter Script Recording - NTLM Windows Authentication Fails - 401 Error
- jmeter - how to access dynamic array of variables in scripting?
- How to get data from Redis' Hash data structure using JMeter
- Need to encrypt the password using Jmeter
Related Questions in WINDOW-TESTER
- tycho surefire with windowtester pro does not open correct window
- Does WindowTester work for AWT UIs?
- After upgrading to Eclipse Luna, WindowTester is unable to identify the view menu in the 'Problems' view
- Running Eclipse WindowTester Pro test from ant script
- Running UI test in Jenkins Docker-Slave
- MenuItemLocator unable to find shell
- Getting NoClassDefFoundError only with TestCases
- Prevent windowtester from exiting the application automatically after the test is over
- Can WindowTester be integrated with some other tool to make it work with Android?
- How to handle pop-ups in Jmeter automation tool?
- WindowTester - Accessing file system (tree) item in a rcp client
- Windowtester script button click doesn't respond
- Why my windowtester tests are failing in jenkins server slaves
- Setting up Window tester pro linux. SWT error
- How to Click on a Tree Item in a Cell using windowTester?
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Cross-check the request from the real browser and from JMeter using a 3rd-party sniffer tool like Fiddler or Wireshark, the requests must be the same (apart from dynamic data which needs to be correlated)
If you're using parameterization - ensure that JMeter Variables have their anticipated values using Debug Sampler
Given you send the same request you should be getting the same response.
If you will not be able to figure out the cause yourself - consider adding .har files for requests from the real browser and from JMeter to your question so we could take a look.