Re: Login failed - javascript

2013-06-11 Thread Robin D. Wilson
By the way, this is where recording a login using the HTTP Proxy Recorder would help up you figure this problem out. -- Robin D. Wilson VOICE: 512-777-1861 On Jun 11, 2013, at 10:54 PM, "Robin D. Wilson" wrote: It appears to me that the way this works is to hide/unhide some elements on the

Re: Login failed - javascript

2013-06-11 Thread Robin D. Wilson
It appears to me that the way this works is to hide/unhide some elements on the page using JavaScript. The way that would work is to hide an element that says "you must enable JavaScript" and unhide an element that has the login form on it. If that is the case, then you can just ignore the "you

Re: Login failed - javascript

2013-06-11 Thread nmq
Take a look at this code snippet I found for the login page. // activate login feature if script is activated and browser is supported if ($.browser.msie && $.browser.version < 8) { $('#browser-redirection').css('display', ''); } else { $('.script-checking').css('display', ''); $('#warnings').css

Re: Login failed - javascript

2013-06-11 Thread Deepak Shetty
>. If the recorded requests have the same problems as your test plan did, which is fairly common when you have dynamic data and is not a good indicator. On Tue, Jun 11, 2013 at 1:52 PM, Robin D. Wilson wrote: > If you use the Proxy setup, you can then just 'replay' the previous > requests and

RE: Login failed - javascript

2013-06-11 Thread Robin D. Wilson
If you use the Proxy setup, you can then just 'replay' the previous requests and see if they have the same problem as you were having. Basically, disable your test requests, and copy/paste the ones from the Proxy recording in their place. Run the test using the recorded requests, and watch the Tr

Re: Login failed - javascript

2013-06-11 Thread Deepak Shetty
no - a particular parameter may be encoded or encrypted or whatever - but you can find that out by the comparison . The message you are seeing in fiddler however is not related to this. Responses from the server can be chunked or gzipped and Fiddler is just telling you that. On Tue, Jun 11, 2013

Re: Login failed - javascript

2013-06-11 Thread Deepak Shetty
hi you cant look at a request in isolation , you have to look at the sequence of requests and compare them to JMeter The response isnt that important (this is just fiddler telling you that an encoding was used - you can change it so that it will show you the text) - usually the request and response

Re: Login failed - javascript

2013-06-11 Thread nmq
I meant they're encoding the request using javascript. Should I have a talk with the developers? Problem is they're offshore *sigh*. On Tue, Jun 11, 2013 at 4:27 PM, nmq wrote: > Hi Deepak > > Thanks for all that info. I installed fiddler quickly. > > This is what I got in request header: > /Up

Re: Login failed - javascript

2013-06-11 Thread nmq
Hi Deepak Thanks for all that info. I installed fiddler quickly. This is what I got in request header: /UpdateCheck.aspx?isBeta=True HTTP/1.1 which I don't think is significant OR I could be wrong. Correct me if I am. It also says "response is encoded and may need to be decoded before inspection"

RE: Login failed - javascript

2013-06-11 Thread Robin D. Wilson
First, this isn't really a "limitation" of JMeter, it is an artifact of the way web sites work. Keep in mind, JMeter is designed to test the 'server' part of the web system, but web systems include the 'browser' in the application logic (often times incorporating a lot of logic in the JavaScript

Re: Login failed - javascript

2013-06-11 Thread Deepak Shetty
Hi a. First you have to understand how your application works - i.e. how does it detect that the browser doesnt support javascript (there are some ways to do this - e.g. set a cookie in javascript or make an ajax call that dumps a value into session or generate a token in javascript etc) b. Then yo

Login failed - javascript

2013-06-11 Thread nmq
Hi everyone I have run into an issue running my basic login script for the AUT. It was working fine till we got a new build this week. Now, I have been a functional tester my whole career. My company wanted me to do some performance test for them and I figured why the heck not. I'll learn along t

Re: Measuring page load / rendering time

2013-06-11 Thread nmq
Hi Bo I'll try my best. Not making any promises though. Regards Sam On Mon, Jun 10, 2013 at 12:18 PM, BOLB (Bohdan L Bodnar) wrote: > I've a similar problem, but I think it may be somewhat more complex: > > I'm looking at end-to-end performance of a system where there are two > state machines:

Re: HTTP Request Error

2013-06-11 Thread waseemfa
The error clearly says that you have entered the URL as http://[http://www.irctc.co.in]/ whereas it should be a simplehttp://www.irctc.co.in/ Regards, Waseem -- View this message in context: http://jmeter.512774.n5.nabble.com/HTTP-Request-Error-tp5717029p5717059.html Sent from the JMeter - Us

Re: How to do DB load test 10K threads using jmeter

2013-06-11 Thread waseemfa
You have an option of adding a synchronization timer where you can enter the no. of threads to run concurrently. In your case 10k. This will make sure all the 10k request are fired together. Regards, Waseem -- View this message in context: http://jmeter.512774.n5.nabble.com/How-to-do-DB-load