ALLInterview.com :: Home Page KalAajKal.com
 Advertise your Business Here     
Browse  |   Placement Papers  |   Company  |   Code Snippets  |   Certifications  |   Visa Questions
Post Question  |   Post Answer  |   My Panel  |   Search  |   Articles  |   Topics  |   ERRORS new
   Refer this Site  Refer This Site to Your Friends  Site Map  Bookmark this Site  Set it as your HomePage  Contact Us     Login  |  Sign Up                      
info       Did you received any Funny E-Mails from your Friends and like to share with rest of our friends? Yeah!! you can post that stuff   HERE
Google
 
Categories  >>  Software  >>  Testing  >>  Automation Testing  >>  Load Runner
 
 


 

 
 WinRunner interview questions  WinRunner Interview Questions
 Load Runner interview questions  Load Runner Interview Questions
 QTP interview questions  QTP Interview Questions
 Test Director interview questions  Test Director Interview Questions
 Rational TestSuite interview questions  Rational TestSuite Interview Questions
 Silk Test interview questions  Silk Test Interview Questions
 Automation Testing AllOther interview questions  Automation Testing AllOther Interview Questions
Question
what is the difference between the HTML and URL based
recording in load Runner?
 Question Submitted By :: Deepa009
I also faced this Question!!     Rank Answer Posted By  
 
  Re: what is the difference between the HTML and URL based recording in load Runner?
Answer
# 1
HTML(Context Sensitive) 

is usually preferred for several reasons.  One of the 
reasons is because it is "context sensitive" , i.e.each 
mouse click

recorded in the script is made in the context of the 
previous step/page.  In order to maintain context it looks 
through the 

previous page to make sure the current operation is 
available.   This adds extra overhead because it is 
performed by a 

background utility called the runtime parser.   Although 
the parser uses extra overhead, it does saves us work in 

correlation and page checks. This because if a link/request 
is not available, the runtime parser will see that and 
throw 

an error telling us that the request is not there. (The 
old "Requested Form Not Found" error).   URL mode, on the 
other

hand does not check the context of the previous request.  
It will simply make each recorded request individually 
regardless 

of whether the request is still available on the page or 
logically follows in context.  That's why URL mode requires 
more in

the way of page checks and correlation.
 
Is This Answer Correct ?    7 Yes 3 No
Shaswat
 
  Re: what is the difference between the HTML and URL based recording in load Runner?
Answer
# 2
This is the incorrect answer.
 
Is This Answer Correct ?    4 Yes 2 No
Jai
 
 
 
  Re: what is the difference between the HTML and URL based recording in load Runner?
Answer
# 3
Its always a best choice to go for HTML mode.

 Url based scripting generates lengthy script and too many 
dynamic values when compared to HTML mode
 
Is This Answer Correct ?    3 Yes 2 No
Ravikumar.p
 
  Re: what is the difference between the HTML and URL based recording in load Runner?
Answer
# 4
When u use internet explorer during recording it use HTML 
format, but when u select URL(uniform resourse locater)from 
load runner window it generates script 4 URL.
 
Is This Answer Correct ?    2 Yes 2 No
Avinash
 
  Re: what is the difference between the HTML and URL based recording in load Runner?
Answer
# 5
HTML based recording:
1.It will capture only HTML based resources.
2.URLs are developed based on each action performed by the 
user.
3.Resource=0 for all the URLs generated under HTML based 
recording
4.Functions developed under this are
  i.web_url
  ii.web_link
  iii.web_submit_data
  iv.web_submit_form

URL based recording:
1.It will capture all the Non-HTML bases resources in the 
application i.e, Jpeg,bitmap etc
2.URLs are developed based on the steps performed by the 
user.
3.Resource=1 for all the URLs in the developed script.
Note:Resource=0 is also some times being displayed in the 
script
4.Functions developed under this are
  i.web_url
    ii.web_submit_data
  iii.web_concurrent_start
  iv.web_concurrent_end
 
Is This Answer Correct ?    4 Yes 0 No
Maheshwar
 
  Re: what is the difference between the HTML and URL based recording in load Runner?
Answer
# 6
HTML:-Using this recording mode LR can generate script by 
performing certain user actions on only HTML context. This 
mode recogneze the user inputs either in the form of data 
or in the form of forms.For each action that we perform on 
the application, LR generates a function called  Web_url. 
Along with this 4 more functions will generated (i.e)
depending on actions we perform.These are

web_submit_data
web_submit_form
web_link
web_image

Generally URl based recording mode will be used on Non-HTML 
resources like Bitmap,Jpeg,gif..., In this mode LR 
generates the function web_url for each and every step that 
we perform on the application. this  mode recognize the 
user input data only in the form of data submitted 
function. some more functions will generates such as

web_submit_data
web_concurrent_start
web_concurrent_end
 
Is This Answer Correct ?    4 Yes 0 No
Hariprasad Reddy
 
  Re: what is the difference between the HTML and URL based recording in load Runner?
Answer
# 7
please correct if i am wrong.

HTML based recording records only the user actions 
where as URL based recording records the requests and 
resources for the server.
 
Is This Answer Correct ?    1 Yes 1 No
Sulabh Jain
 
  Re: what is the difference between the HTML and URL based recording in load Runner?
Answer
# 8
HTML
Context Sensitive based script recording

 HTML-Based / describing user actions is the easiest to maintain

For example, assume there is a link called "Continue" that
sends you to http://localhost/ index.html. Your script
records "Continue", and NOT the destination URL. So, if
sometime later your application developer decides to change
the URL associated with "Continue" to something else - like
http://localhost/ home.html, your script will still work
correctly - and go to "home".

LoadRunner parses the HTML it received from prior server
responses to determine what the full URL is behind the
Continue link(i.e. Context Senistive).

LoadRunner does as much work for you as it can, leaving you
with the fewest script statements to maintain.



URL:
No context would be considered during script recording,
every statement get recorded independently

Every thing would get recorded as URL only. i.e. web_url

In this case if URL based recording is used then script will
fail during replay.

URL mode records every URL that LoadRunner is supposed to
ask for –but without the actual parsing.

So, if a URL is there, LoadRunner simply calls it but does
not examine it for embedded URLs. 

This allows(i.e. Not parsing embedded URLs) would make LR to
run very FAST.

But this type of script would become obsolete and you may
not even know it if some thing changes in the application
hence this is very much useful for a stable
 
Is This Answer Correct ?    5 Yes 1 No
Satish
 
  Re: what is the difference between the HTML and URL based recording in load Runner?
Answer
# 9
In html recording mode each action has one url 
eg:i have take one iogin form in that login form  we can 
enter user name and pwand click on ok this is one tranction 
having a one url
in url recording mode each step has one url
eg login form un having one url pw is one url and click on 
one url
 
Is This Answer Correct ?    3 Yes 1 No
Rk Murthy
 

 
 
 
Other Load Runner Interview Questions
 
  Question Asked @ Answers
 
Why do you create parameters?  2
If we have 10 iterations and 20 user, we have to execute 1 iteration by 2 users ... what are the steps for above ? IBM1
what is bottleneck?  8
lr_debug_message ?  1
How do you report a bug when it is found in perfomance testing using Load Runner Ness-Technologies2
what do you mean by 90 percentile in the Lr report TCS9
How do you write user defined functions in LR? Give me few functions you wrote in your previous project?  1
Where do you set Iteration for Vuser testing?  2
Where do you set automatic correlation options?  3
why do u need a parameterize fields in ur virtual user script ?  3
)In which way we can say html recording mode is best over the URL mode to record the script in Vu gen? EDS1
When do you disable log in Virtual User Generator, When do you choose standard and extended logs?  1
What is the relation between Response Time and Throughput?  5
in general best o/s should posses max CPU utilization.but in loadrunner we consider CPU utilization exceed 70% it is a bottleneck in CPU.explain why? Symphony4
In which doc do client give the VUser limit & Parameterization? AZTEC1
Generally LoadRunner uses to test the load. ( client- server, webbased applications,... etc). Shall we use LoadRunner instead of WinRunner or some other tools? Ness-Technologies7
Explain the Configuration of your systems?  1
Does any one know how to over come the problem of "monitoring the load generators over firewall". We are able to use these machines for load generation, but are not able to monitor the measurements of these machines. When tried to add these machines to the windows resources, we were getting the error "Monitor name :Windows Resources. Cannot connect to machine stresstestxp6:62043. Reason: The network path was not found." Also note that, we are able to ping/telnet the LG from the controller, but not the vice versa Is there any router settings to be made or any other configuration has to be done?  1
What is SECURITY TESTING? what are the methods followed for this type of testing? Thanks, Prasanna  2
What is the difference between overlay graph and corelated graph?(Chandana) TCS1
 
For more Load Runner Interview Questions Click Here 
 
 
 
 
 
   
Copyright Policy  |  Terms of Service  |  Help  |  Site Map 1  |  Articles  |  Site Map  |   Site Map  |  Contact Us interview questions urls   External Links 
   
Copyright © 2007  ALLInterview.com.  All Rights Reserved.

ALLInterview.com   ::  Forum9.com   ::  KalAajKal.com