You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to jmeter-...@googlegroups.com, ilakk...@gmail.com, gli...@gmail.com
Hi All,
I kept all the request with start and End time under jp@gc - Web Driver Sampler After I run this script, I could only on sampler in Summary Report or View Results in Table.
I want to know each of the https request's start and End Time. for eg(landing page, login page, home page, Search page, results page and logout page) So Where can we each requests result in web Driver samepler used case.
Thanks and Regards, Ilakkuvan P
gli...@gmail.com
unread,
Mar 11, 2014, 9:36:41 AM3/11/14
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to jmeter-...@googlegroups.com, ilakk...@gmail.com, gli...@gmail.com
As per the guide, you need to have multiple WebDriver Samplers.
Like
Login sampler
WDS.sampleResult.sampleStart()
your login-related code here
WDS.sampleResult.sampleEnd()
Home Page Sampler
WDS.sampleResult.sampleStart()
your home page related code here
WDS.sampleResult.sampleEnd()
Search page sampler
WDS.sampleResult.sampleStart()
your search related code here
WDS.sampleResult.sampleEnd()
etc
Browser state will be shared across the samplers, you'll need to start your browser only once, in "Login" sampler and at the end, at "Logout" page you'll need to call WDS.browser.quit()
If you need to get the whole login->home->search -> etc. Timing you'll need to wrap everything in Transaction Controller.
Hope this helps,
Dmitri.
ilakk...@gmail.com
unread,
Mar 26, 2014, 12:30:46 AM3/26/14
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to jmeter-...@googlegroups.com, ilakk...@gmail.com, gli...@gmail.com
Thanks you for your information. I found the way.....it will be useful to all