how quick test record on dynamically generated urls and
web pages.

Answers were Sorted based on User's Feedback



how quick test record on dynamically generated urls and web pages...

Answer / sivareddy

StartURL="give the Url"
set IE = CreateObject("InternetExplorer.Application")
IE.Visible = true
IE.Navigate StartURL

By using this script we can directly lanch the web Browsers

By using sysyemUtil.Run function we lanch the web Browsers

Is This Answer Correct ?    2 Yes 1 No

how quick test record on dynamically generated urls and web pages...

Answer / baba fakruddin

Siva reddy is okay

if we use system.util "www.gmail.com"
it opens directly gmail in default browser

if we create an instance for browser we can record directly
on default url

' It opens default/mentioned in options web page
dim ie
set ie=createobject("internetexplorer.application")

ie.visible=true

set ie=nothing

Is This Answer Correct ?    0 Yes 0 No

how quick test record on dynamically generated urls and web pages...

Answer / sharmila

UFT actually clicks links as they are displayed on the page. Therefore, UFT records how to find a particular object, such as a link on the page, rather than the object itself. For example, if the link to a dynamically generated URL is an image, then UFT records the "IMG" HTML tag, and the name of the image. This enables UFT to find this image in the future and click on it.

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More QTP Interview Questions

How to compare 2 excel files using QTP? How to compare 2 PDF files using QTP?

1 Answers  


what are the different u notice in betweem QTP version 8.2 and 9.2 and what is new in QTP9.2

1 Answers  


How we can add actions in the test using QTP?

5 Answers  


CAN WE USE 'BVA' AND 'ECP' IN AUTOMATION?

3 Answers   Polaris,


can any one make me confirm about a real time employee with better experience in QTP who is providing QTP course individually in Bangalore???

3 Answers  






Hi friend I have query regarding QTP datatable. I want to insert data in datatable during runtime. suppose i wrote datatble.value(1) = "Test data" so when i run the script it says column(1) doesn't exist. Then i write something in column A1 manualy and run the script again. Now it works fine. Pls clarify how i can put value in blank cell of datatable.

10 Answers   Apex,


what is the Command used to start the QTp from Run.

7 Answers  


i am unable to select an item from combobox using Descriptive programming. can any one give me code for scheduling the ticket using Descriptive programming.

1 Answers  


How do I generate Test Results window using descriptive method ( run time ) after my test execution process? Please have a look of my below code. ========================================================= Dim qtApp Dim qtTest Dim qtResultsOpt Set qtApp = CreateObject("QuickTest.Application") qtApp.Launch qtApp.Visible = True qtApp.Options.Run.CaptureForTestResults = "Always" qtApp.Options.Run.RunMode = "Fast" qtApp.Options.Run.ViewResults = True qtApp.Open "C:\Automation\Example", True Set qtTest = qtApp.Test qtTest.Settings.Run.OnError = "NextStep" Set qtResultsOpt = CreateObject ("QuickTest.RunResultsOptions") qtResultsOpt.ResultsLocation = "C:\Automation\Example\Res1" qtTest.Run qtResultsOpt MsgBox qtTest.LastRunResults.Status qtTest.Close Set qtResultsOpt = Nothing Set qtTest = Nothing Set qtApp = Nothing ========================================================== This code is working fine, but Test Result window is not displaying after execution. Anybody can please help me regading the same. Thanks Akshaya Madali Capgemini India Pvt Ltd 9823213538

0 Answers   Cap Gemini,


In the QTP the snap shots obtained during the recording time will appear in the active screen, if we have to use the snapshots from where we have to access. in which memory location of QTP they will be stored?

1 Answers  


When there is descriptive programming, why do we go for Object repository for desigining scripts.?? why cant we use descriptive programming instead of using the Object repository..??

4 Answers   DST Global Solutions,


Please guide me release notes of Automation once scripts are completed

0 Answers  


Categories