Hi >When the search text is clicked, it presents the result set at the bottom of the page. The function that does this is doSearch(). What you need to determine is what actually happens when the function is clicked (some sort of http request must be being made). You can use LiveHttpHeaders(FF) / Fiddler(IE) to determine what the browser is doing or Use Jmeter proxy server to record the test.
JMeter is not a browser and does not execute javascript, you can only simulate the HTTP Request/response that a browser sends. So once you know what http request the browser sends from above you can add an HTTPSampler for the same. regards deepak On Fri, Jan 15, 2010 at 7:16 AM, Hoffman, Matthew S <[email protected]>wrote: > I have a request Search.action that loads a page with a form. There is > search text at the bottom. When the search text is clicked, it presents the > result set at the bottom of the page. The function that does this is > doSearch(). > > Have a HTTP request that looks like > https://xxxx/xxxmgr/search.action > > How do I send it the doSearch() to show the result set? > > Thanks > > ------------------------------------------------------------ > This message and any files transmitted within are intended > solely for the addressee or its representative and may > contain company sensitive information. If you are not the > intended recipient, notify the sender immediately and delete > this message. Publication, reproduction, forwarding, or > content disclosure is prohibited without the consent of the > original sender and may be unlawful. > > Concurrent Technologies Corporation and its Affiliates. > www.ctc.com 1-800-282-4392 > ------------------------------------------------------------

