Is there any option how to simulate keyboard typing in jMeter? Ive got filter field with autosuggestions and I want to test response time of it. I want to start typing something like "W","Wa","Wash","Washi" etc. but for values loaded from CSV.
相关问题
- JMeter - Using Variables from other BeanShell Pre/
- JMeter - Detecting a TransactionController Sampler
- Filter Datagridview rows using TextBox
- Access denied issue while recording Jmeter script
- Extract Location from Response Header with JMeter
相关文章
- netcore3中,在OnResultExecuted方法中,怎么读取Response内容
- Jmeter如何做并发测试?需求:从Excel读取数据,设置集合点的那种 跪求大佬解惑。。。
- Using safe filter in Django for rich text fields
- Get value from RestSharp response headers
- How to add negative filter in network tab of Chrom
- how to find/filter the array element with the smal
- Return Image from Controller symfony2
- .filter is not a function [duplicate]
JMeter operates on HTTP protocol level, not browser level. Therefore you shouldn't try to emulate typing. What you can do is to capture (record) HTTP request triggered by such change, and later run this as part of your JMeter test.
My advice is - try not to overcomplicate it. JMeter (or perf testing in general) & async calls can be tricky!