how to do spell check in QTP?
reply please
Answers were Sorted based on User's Feedback
By using Test check points and Text area check points we
can perform GUI Testing or Text Testing
| Is This Answer Correct ? | 4 Yes | 0 No |
Above scripts are good... but they given for validation of
text available with our's i.e., expected text....
If you don't have expected text... you have only QTP and
web application. what do u do?
Use Text Check point and Text area Check point then it
makes your script easy and QTP will take care of expected
and actual values here...
But These check points will reduces the efficiency of QTP.
so,
GUI Testing should be done manually always... don't use QTP.
if you have such validations for help content or any text
content to check the gramatically and spell?
Use MS word.. copy content from your application and paste
here in MS word... it will show you the spelling mistakes
and also the gramatical mistakes.
| Is This Answer Correct ? | 4 Yes | 0 No |
Answer / neeraj chauhan
Hope this will help you..
Dim str
str="Don't have a Windows Live ID?"
If Browser("Sign In").Page("Sign In").WebElement("Don't have
a Windows Live").GetROProperty("innertext")= "Don't have a
Windows Live ID?" Then
msgbox "We are sucessfull"
End If
| Is This Answer Correct ? | 3 Yes | 0 No |
Using strcomp function we can check the spelings of a string.
-----------CODE---------------------
Set browobj=createobject("internetexplorer.application")
browobj.visible=true
browobj.navigate"www.yahoomail.com"
wait(5)
Dim a,b
b="Signing up is easy."
a=Browser("name:=Yahoo! Mail: The best web-based
email!").Page("title:=Yahoo! Mail: The best web-based
email!").WebElement("innertext:=Signing up is
easy.").GetROProperty("innertext")
msgbox a
c=StrComp(a,b)
MsgBox c
If c<>0 Then
reporter.ReportEvent 1,"Stringcomparision","strings are not
equal"
else
reporter.ReportEvent 0,"Stringcomparision","strings are
equal"
End If
Any doubts....mail to-------mskalyan.smile@gmail.com
| Is This Answer Correct ? | 2 Yes | 0 No |
Answer / rayudu
U r right!
But i want the script for that.
Is there any.
| Is This Answer Correct ? | 1 Yes | 0 No |
Answer / kiran
if(Exp==Act)needs to be replaced by if(Exp=Act).
Correct me if i am wrong....
Thanks
Kiran
| Is This Answer Correct ? | 2 Yes | 1 No |
Answer / venkat reddy
What Neeraj said is correct , but i willb try to give more
clear on this,
Dim str
Exp="Don't have a Windows Live ID?"
Act=Browser("Sign In").Page("Sign In").WebElement("Don't
have
a Windows Live").GetROProperty("innertext")= "Don't have a
Windows Live ID?"
if(Exp==Act) then
msgbox "We are sucessfull"
else
msgbox "We are not sucessfull"
End If
Byeeeeeee
correct me if i am wrong...
| Is This Answer Correct ? | 1 Yes | 3 No |
suppose i give valid user id and password to open an web base application on qtp.how qtp will know itis a valid user id and password
Older version QTP is 8.2 and New version QTP is 9.2. My question is, Why it is QTP 9.2, why not 8.3,8.4 .... why it is not something ?
How should i find out whether the cursor is moving horizantally. when tabbing continuously
Explain the types of object repositorys in qtp?
Can we run test with out adding object in object repository? How it is possible?
Can we create a qtp test from qc?
Hello Everyone, I have a problem. QTP is capturing no action on a particular page in the application that I am trying to automate. But on the same side its working fine on other pages of the same application. Can someone please help me understand the reason behind this inconsistency.
What are the most frequent errors you faced while executing your scripts?
I installed QTP 9.5 on vista. Can someone please provide me the license key of the same. Thanks, Avi
Can any suggest me what is exposure testing?
1. Can anyone help me with recovery scenarios, each type with examples and also what is on error resume next?
How many types of parameters are there in QTP and what are they?