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 |
How To write script in QTP For Field Validation Example: password Field is accepting A range 8-20 characters only.How to write script?
how to lunch the application in the qtp tool ?
Hi any body can tell me the in detaled information about Description.Create() thanks in advance
What is a quick test professional?
Through array we can execute the testcase how ? give me example
Can we directly automate test script according to requirements?
How will you handle custom object in QTP?
what are the limitations of smart identification in qtp 9.0
Is qtp supports uni-code?
What is parameterization? What is syncronization pt.?
3 Answers Semantic Space, SRM,
What is keyword view?
what is the default ordinal identifier.what are the send keys in qTP.