girishkumar


{ City } hyderabad
< Country > india
* Profession * application engineer
User No # 100660
Total Questions Posted # 2
Total Answers Posted # 9

Total Answers Posted for My Questions # 2
Total Views for My Questions # 8249

Users Marked my Answers as Correct # 31
Users Marked my Answers as Wrong # 4
Questions / { girishkumar }
Questions Answers Category Views Company eMail

HOW TO AUTOMATE CAPCHA IMAGES while creating Gmail account

TCS,

2 QTP 4752

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

TCS,

QTP 3497




Answers / { girishkumar }

Question { TATA, 13188 }

how we can take data in the username field text box into
variable in web application explain with example and give
all functions to get data into variables


Answer

example:
Dim variable name
variable name = Browser(browser).page
(pagename).webEdit(usernaem).GetROproperty(text)

in the above example, "text" is the object property which contain the data of the username field. this property will change based on the the type of class of object you selected. if you use object spy, you can get more object information in that you can select which object suitable to meet your requirement.
Ex: if you want to get data from list box, at that time you may use "items count" instead of "text".

EX:variable name = Browser(browser).page
(pagename).webList(Fly from).GetROproperty(items count)

Is This Answer Correct ?    0 Yes 0 No

Question { Fiberlink, 6750 }

example of high severity and low priority bug.


Answer

PRASHANTH ANSWER IS CORRECT,

EX: IN TESTER POINT OF VIEW SPELLING MISTAKE IN APPLICATION
LOGO IS NOT SEVER BUT IN CUSTOMER POINT OF VIEW IT IS SEVER
BECAUSE IT MAY CONFUSE THE CUSTOMER, BECAUSE OF THAT REASON
WE WILL GIVE HIGH SEVERITY(IT HAS TO FIX),
BUT WE WILL GIVE LOW PRIORITY (NEED NOT TO FIX IT IMMEDIATELY).

Is This Answer Correct ?    0 Yes 0 No


Question { 6801 }

If there are 10 notepads opened on desktop. how can we
close a particular 2nd notepad using script


Answer

CreationTime is best for it

While Browser("CreationTime:=0").Exist
Browser("CreationTime:=0").Close
Wend




http://motevich.blogspot.in/2008/06/qtp-descriptive-programming-browsers.html

Is This Answer Correct ?    1 Yes 2 No

Question { 7314 }

3. what's the difference between the smoke and sanity testing.
4.Who test the sanity and who test the smoke testing? why?


Answer

ANITHA, you are completely WRONG. SMOKE & SANITY TESTING
DONE BY TESTERS ONLY.

SMOKE TEST: Means at least software working or not with out
any run time issues.
SANITY TEST: Means Due to modification in the software
build, is there any most related modules are effected or
not. just like cross checking even if it was passed
previously, there may be a chance to effect by the modification.
EXAMPLE: i am a tester, developer released one software
build for testing, first i will Conduct SMOKE TEST means, i
am checking overall functionality of the software is ok or
not, Then i conduct Real testing, now i got one defect in my
app, then reported the defect to Defect tracking team, they
conformed that is BUG, Then they forward the defect to
Developer, then Developer fix the BUG and released Modified
Build, now again as a tester i will conduct SMOKE TEST once
again to check functionality of the software and then check
weather the BUG is fixed or not, if bug is fixed, then i
will conduct SANITY TEST. Means that, DUE TO MODIFICATION,
IS THERE ANY MOST RELATED MODULES ARE EFFECTED OR NOT, here
we will conduct previously passed test for conformation, if
a previous tests are passed then will go for Regression
Testing.

Is This Answer Correct ?    0 Yes 1 No

Question { 4561 }

what is difference between Mandatrary proparties and
Assistive proparties? Explain


Answer

yes, i think you are right

Is This Answer Correct ?    0 Yes 0 No

Question { Wipro, 17258 }

What is the difference between high level design and low
level design with example


Answer

Ex: HLD is over all software level.
LLD is module level.
HLD having information like, When user login to website he can find two option Mail and Chat, and having log out option available to log from the website.

LLD for Login only
------------------
LLD having information like, when user try to login with valid data application(website) will perform the Database authentication for valid details, if the user entered details as per database he will login and got the next page, for invalid data, error msg will come and cursor move to login details fields.

Like this LLD having Actual flow of application.

Is This Answer Correct ?    2 Yes 0 No

Question { Oracle, 18659 }

What can be done if requirements are changing continuously?


Answer

IF THE REQUIREMENTS ARE CHANGING OR CLIENT NOT HAVING THE
CLARITY ON REQUIREMENT, COMPANY WILL FOLLOW THE PROTOTYPE
MODEL, MEANS FIRST COMPANY WILL DEVELOP THE SAMPLE SOFTWARE,
THEN AFTER GETTING CLARITY ON REQUIREMENT, THEN THEY DEVELOP
FINAL SOFTWARE TO RELEASE.
IN THIS MODEL BUSINESS ANALYST WILL PREPARE PROTOTYPES FOR
CLIENT TO GET THE CLARITY ON REQUIREMENT.

Is This Answer Correct ?    12 Yes 0 No

Question { Salus, 3652 }

What is the Database testing?? Is it necessary to have
database knowledge for testing?had you ever tested the
software by entering input at the front end and check it at
back end?


Answer

EX: Take an example of IRCTC online Reservation, while we book a ticket from online, we should provide journey and personal detail and click on book, when we click on book this front end data will be updated in database. Checking of this FRONT END data is properly inserted in the database or not is call as DATABASE TESTING. Database testing is mandatory when your application having the database(Either 2Tire or 3Tire Applications) it is one of the Function testing.
To test the database Tester At least having the knowledge of SQL(DML) commands select,update,insert,delete and Groupby,joins.

Is This Answer Correct ?    7 Yes 1 No

Question { Accenture, 5945 }

whaht is the difference between CLASS & OBJECT?


Answer

Ex: My application having ok button, 2 edit boxs, submit button, checkbox,radio button, cancel button,

CLASS:
in the above objects. we will decide the CLASS, Based on the similar kind of operations what we perform on the objects.
Ok,submit & Cancel buttons belongs to one CLASS.---click
2 Edit boxes belongs to one CLASS.----Enter the data
Radio button belongs to one CLASS.----select
checkbox belongs to one CLASS.---set

OBJECT: Components in the application is call it as OBJECTS.

Is This Answer Correct ?    9 Yes 0 No