Bug Tracker

Modify

Ticket #3320 (closed bug: invalid)

Opened 5 years ago

Last modified 15 months ago

jquery-1.2.6.min.js and loadrunner 8.1 conflict

Reported by: storrey Owned by:
Priority: major Milestone: 1.3
Component: core Version: 1.2.6
Keywords: loadrunner jquery Cc:
Blocking: Blocked by:

Description

the workaround for IE to check if the doc is ready causes LoadRunner 8.1 sp4 to go into endless loop in "click and script" mode. Every time we have to deploy a new version of our web application into out quality assurance environment for testing, I have to edit the file and comment out the line.

the offending line is (also see snippet below for context)

setTimeout( arguments.callee, 0 );

If IE is used and is not in a frame Continually check to see if the document is ready

if ( jQuery.browser.msie && window == top ) (function(){

if (jQuery.isReady) return;

try {

If IE is used, use the trick by Diego Perini  http://javascript.nwbox.com/IEContentLoaded/ document.documentElement.doScroll("left");

} catch( error ) {

setTimeout( arguments.callee, 0 ); return;

} and execute any waiting functions jQuery.ready();

})();

Change History

comment:1 Changed 5 years ago by storrey

To be completely accurate we don't edit the sourse code, except to debug what's causing the issue. We had to completely rework a set of loadrunner scripts to avoid using the click and script technology available via HP's (formerly Mercury) Loadrunner.

comment:2 Changed 3 years ago by dmethvin

  • Status changed from new to closed
  • Resolution set to invalid

Since jQuery 1.4 doesn't use packer for minimization and there's no test case for this bug, I'll close it.

Please follow the  bug reporting guidlines and use  jsFiddle when providing test cases and demonstrations instead of pasting the code in the ticket.

View

Add a comment

Modify Ticket

Action
as closed
Author


E-mail address and user name can be saved in the Preferences.

 
Note: See TracTickets for help on using tickets.