Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


i am entering wrong data or wrong password in a text box and
click on submit button .i am getting a popup window with a
message Please enter the correct password or data .How can i
handle this situation by using QTP.

Answers were Sorted based on User's Feedback



i am entering wrong data or wrong password in a text box and click on submit button .i am getting a..

Answer / neeraj

Hi Friend

You can go through the "Recovery Scenario" for
this kind of problem. Steps are..in QTP 9.2

Resources-> Recovery Scenario Manager-> click on first image
that is with right side of "Scenarios"(only the enabled
image)text-> read the content and "Next"-> these are the
condition wherever we use Recovery Scenarios select one of
them according wat type of error you have(pop up
window)->"Next"->Click on "Hand" pointer and capture the
popup window and "Next"->"Next"->Select the event you want
to perform "next"->"Next"-> From Recovery operation window
un select the check box and "next"-> "next->"next"-> Write
some description or not(optional)->"next"-"Finish"->"Save"
in your destination.

Now you can use that in your script.

Have a look(softestonline-neeraj043.blogspot.com)

Is This Answer Correct ?    12 Yes 3 No

i am entering wrong data or wrong password in a text box and click on submit button .i am getting a..

Answer / dimple

Hi all,
I have read all the answers.
By using recovery scenario we can just click ok button on
the pop up window.
If we want to enter in to the application ,I think even
recovery wont help it.
If the question is about validation then validate the
username and password by if else statement for Pop up
existence.
If not the data must be correct

Is This Answer Correct ?    5 Yes 1 No

i am entering wrong data or wrong password in a text box and click on submit button .i am getting a..

Answer / less than you

Suppose the same pop window generated while running test
case and while recording it was not generated & values were
properly inserted. What procedure is require please explain
with details?

alkaa.dugaal@gmail.com

Is This Answer Correct ?    2 Yes 2 No

i am entering wrong data or wrong password in a text box and click on submit button .i am getting a..

Answer / bfakruddin

Hello Folks,

Dimple provided nice answer... validation should be done on
password field... when we provide wrong input... popup gets
rise then check it is poped up or not... if it is rised
then pass the test case else... password field accepts
wrong password too...

Code is here,

res=dialog("correct password").getroproperty("enabled")

if (res=true) Then

reporter.reporteven micpass,"password validation done"
...
...

Then

dialog("correct password").webbutton("OK").click

Thanks & regards
Baba Fakruddin.D

Is This Answer Correct ?    1 Yes 1 No

i am entering wrong data or wrong password in a text box and click on submit button .i am getting a..

Answer / vamsi

if you want close all the pop-ups to be closed in QTP, we can use utility objects too
in the above comments they handled pop-ups using recovery scenario as well as through scripting.
but to handle pop-up with utility object write this statement in else block of verification point

Systemutil.CloseDescendantProcessess

if we add this statement the pop-up will be closed automatically by QTP

Is This Answer Correct ?    0 Yes 0 No

i am entering wrong data or wrong password in a text box and click on submit button .i am getting a..

Answer / akshar jain

if there is a pop up message then u just add it to ur
object repository & make the qtp to click on the ok
button..you make this as a function & validate ur login
page as many time as you wantn call ur function

Is This Answer Correct ?    4 Yes 5 No

i am entering wrong data or wrong password in a text box and click on submit button .i am getting a..

Answer / sasmita

Dear Alkaa,
i am just describing the scenario.
1.Open gmail/yahoo or any site.
2.Enter your valid userid and invalid password.
3.We can see a pop-up window with a message "Please enter
the correct password or Password invalid "
even i know the right scenario
4.But i just wanna know how to capture the pop-up window.

Thanks,
Sasmita

Is This Answer Correct ?    1 Yes 2 No

i am entering wrong data or wrong password in a text box and click on submit button .i am getting a..

Answer / zahid

Identify this pop up and buttons on this pop up as an object
and add it in repository. Now use MouseMove function to move
mouse pointer over this pop up and click on "Yes" or "No"
button according to your requirement.

Note:- I am assuming that pop up is a type of window object

Is This Answer Correct ?    1 Yes 2 No

i am entering wrong data or wrong password in a text box and click on submit button .i am getting a..

Answer / saravanaraja

Use the following code:

systemutil.CloseProcessByWndTitle

Is This Answer Correct ?    0 Yes 1 No

i am entering wrong data or wrong password in a text box and click on submit button .i am getting a..

Answer / ajay

When ever u got the popup window you can make it that
ststement as optional.When ever you make it optional if the
popupwindow appears it will take care other wise move to
next step.

Is This Answer Correct ?    1 Yes 3 No

Post New Answer

More QTP Interview Questions

How do you learn the object in QTP?

2 Answers  


Write a script to print below pattern 5 4 3 2 1 5 4 3 2 5 4 3 5 4 5

2 Answers  


Does QTP have any limitations?Can it work with all kinds of programming languages like java,springs,ajax ,hybernet?Also does it work well with windows 7.What are its other limitations

0 Answers   TCS,


Hi guys, Our company has started to automate testing and started using the tool QTP.Iam new to QTP and I have the following questions to ask. Would appreciate if anyone could give me a hand on this and explain things in a detailed way. [1] Bugs outside checkpoints: I know that I can easily make the QTP do what I want inside the application. Also, I know that I can insert some checkpoints and that the qtp will notice if those conditions are not met. However, there are bugs and problems that might not be connected to a checkpoint (system crash, database error, losing session/logout etc.); how can I make sure that the QTP will notice such problems as well and flag a test as failed. [2] How to tell the QTP that when a particular statement is "false",it should flag it as, test failed and show in in the test report. In short how to tell the qtp that a test is false from the script so that it shows it in the report For Eg:- if(true) test passed // how to instruct qtp else test failed // how to instruct qtp [3] Test script portability: we are having several environments; If I record a test on User Interface, obviously, the qtp will save the URL; however, how can I make the qtp run the tests so that the url is provided dynamically. Is there a possibility to parameterize the web server.Is this the way to do it.I dont know? [4] Test management: How do I manage the tests? I guess we will be doing it in Quality Center, yet, it’s not perfectly clear to me how we will be doing that. [5] Running scheduled test sets: How do I group tests to a certain test set? How can I make this test set run at a predefined time? [6] Test maintenance: What do we need to do beforehand in order to enable for easy test maintenance, meaning small adjustments in tests? [7] Reports: What kind of reports on test results are available (either QTP or Quality Center)? Thanks in advance and hoping for an answer. Jen

0 Answers  


What is use of Global Sync Timeouts in QTP9.2?

2 Answers  


can u write one user defined function for webedit class.

6 Answers   Cap Gemini,


What is the Automation Process followed in your company?

1 Answers  


How can we test an XML using QTP? I have been to an interview, where they have given me an XML which had 15 values and they have given those values on a separate page. They asked me to write a QTP script to check the XML is having those particular 15 values.

2 Answers  


How do you test the text displayed in the header portion of times of india epaper. Hot news(banner) are scrolling in the top of the page, how do you test using QTP?

0 Answers  


Can any one tell me about "Mapping Repository Parameter Values" and why we use it....??How to use it???Please, tell the preconditions also...........???? Thanks in Advance

0 Answers  


How will you find the current time of the remote machine using QTP script?

0 Answers  


There are two tabs in the application suppose, A and B.On clicking the tab "A" one table grid will open. if u click on tab "B" Another table gride will open. Now can I do some operations on both table grids with a single table grid properties in the object repository? I have added all objects of the first table grid into the object repository Now iam checking enable/disable status of "save button" in the second table grid my code is like this val=javawindow("zseries").javabutton("save").getroproperty ("enabled") when I highlighting the save button in the object repository by keeping open the second tablegrid on the application.It is displaying the popup message"The selected object can not be found in the application" can I use properties of one table grid for both tabs if so how it is possible. Can anyone help me

2 Answers   Livetek,


Categories