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 |
What are the views available in qtp?
In a web application , there is a table of rows and coloums , i want to pickup the 1st row and 3rd coloums name (not data)how can any one explain
Please help me by providing the License key for QTP 9.2, at guru_aarya@yahoo.co.in Best Regards Gururaj.B
How to retrieve alpha bate from the alphanumeric string with special character.
in my application,validation message has in japanise language.how to validate this message is appears properly or not
How to add object to object repository in qtp9.0 Suppose for brower yahoo home page
BEst INstitute for QTP & SELENIUM
i am trying to automate yatra.com,in that site, when i go to automate the Leaving from field showing as a WEBEDIT, but when i enter 1 or 2 char, it displaying dropdownlist, i try to use keyboard automation to select the item from that list but it is not possible, can anybody help he. Thans for posting the Answer
How to find array size in qtp?
How does QTP identifes the object in the application?
What is the differences between image check point and bit map check point?
what is the difference between the modular framework and datadriven frame work