Username field having some string mistake like"user
naem".what type of testing i prefer to test spell check.
Answers were Sorted based on User's Feedback
Answer / muthu
this type of String testing is known as USABILITY TESTING,
here we check spelling, grammar, fonts,color and location
of fields ,buttons, boxes,links, navigations and etc,.
Is This Answer Correct ? | 3 Yes | 1 No |
Answer / venakatesh
it goes under usability testing.
And qtp is functional testing tool which is designed for
testing the faunctionality of application not for testing
the user interface testing.
Is This Answer Correct ? | 2 Yes | 0 No |
Answer / suresh
x="user name"
y=webEdit("name").getroproperty("text")
if (x=y)then
document.write("equal")
else
document.write("Not equal")
end if
Is This Answer Correct ? | 2 Yes | 1 No |
Answer / santosh
Hi,
simply use Text check point to check spelling.
Is This Answer Correct ? | 1 Yes | 0 No |
Answer / softwaretester4u
this is GUI testing. this is low seviority and high
priority
hi guys pls tell me is their any option to check spell in
QTP ( grammer in application )
like in the application "i am gode boy " in the edit box .
i wnat to spell check
Is This Answer Correct ? | 0 Yes | 1 No |
Answer / tvs ramakrishna chowdary
venkatesh is obsolutely correct....but suresh u need to do
some small change in the code
x="user name:"
y=webEdit("logical name").getroproperty("htm ld")
if (x=y)then
msgbox "correct"
else
msgbox "wrong"
end if
NOTE: But for spelling check this much code not
necessary.simply by seeing we can able to know the
problemm.....isn't write...
Is This Answer Correct ? | 0 Yes | 2 No |
When I parameterize a script then for each iteration script is executed from begining to end. If I want to execute some middle steps multiple times using Parameterization (avoiding begining and end steps), what is the solution of this (e.g. total steps are 1 2 3 4 5 and i want 2 3 4 only(not 1 nd 5)
Can we write winrunner language i.e TSL in QTP tool?
How will you declare a variable in qtp?
Hi All, I wanted know how does QTP identifies a DataCombo. While recording I clicked on the data combo and selected a value from the list. The click of Data Combo is recorded but the selection of the value from the list is not recorded. My application is based on VB and SQL server as the database. Please let me know as how do I record the action of selecting a value from a DataCombo list. The list is being loaded from the Database Record set.
How QA specialist can identify when programmatic descriptions are useful?
How to use the object spy in quicktest professional 8.0 version?
1.how can we report the QTP test result in a different excel sheet 2.
what are the disadvantages in QTP 9.2?
Plz write the code, function will take the parameter as month number, i.e., numerical value, but it returns the last day of the month in string (weekday). example: input: function parameter: 3(march) output: thursday
what is batch testing?
What are the different properties of an web object
abt filter function if iam using below two statments its ok My = Array ("Apples","Oranges", "Apricots") MyResult = Filter(My, "Oran") if i use msgbox MyResult it shows type mismatch plz help me