siraz


{ City } nellore
< Country > india
* Profession * software tester
User No # 13233
Total Questions Posted # 0
Total Answers Posted # 7

Total Answers Posted for My Questions # 0
Total Views for My Questions # 0

Users Marked my Answers as Correct # 11
Users Marked my Answers as Wrong # 11
Questions / { siraz }
Questions Answers Category Views Company eMail




Answers / { siraz }

Question { Apex, 29970 }

Hi friend
I have query regarding QTP datatable.
I want to insert data in datatable during runtime.

suppose i wrote

datatble.value(1) = "Test data"

so when i run the script it says column(1) doesn't exist.

Then i write something in column A1 manualy and run the
script again.

Now it works fine.

Pls clarify how i can put value in blank cell of datatable.


Answer

Before inserting value in the cell, first we need to create
column by using "addparameter" then we can insert value in
that column.

Is This Answer Correct ?    1 Yes 2 No

Question { 7349 }

Hi Guys, here I am posting one question.

Wen u r working with Notepad. If it is not responding in
the middle of TEst...what u will do.


Answer

If notepad is not responding in the middle of the process,
No other operations can be done on notepad so simply skip
the process by putting On error resume next statement
before starting notepad operations and show remark by
displaying message box or display remark in result window.

Is This Answer Correct ?    1 Yes 0 No


Question { 7623 }

Where virtual objects stores results?


Answer

As per my knowledge, All the information related to virtual
object will be stored in virtual object manager.

Is This Answer Correct ?    1 Yes 7 No

Question { TCS, 3980 }

Can we use same virtual objects in many number of tests?


Answer

Yes, we can use same virtual objects in any number of tests.
Once any object changed as virtual object that information
will be saved in virtual object manager. Until the same
virtual object exist, we can use those virtual objects in
any number of tests.

Is This Answer Correct ?    3 Yes 0 No

Question { 6012 }

Can we create test script with out Step Generator?


Answer

Yes,we can create the script without step generator. Step
generator is a Additional feature for the people who are
new to QTP. Generally script will be generated using any
one of the following methods.
- Recording method
- Manual script writing method(Using Object repository)
- Descriptive programing method(Without using Object
repository0

Is This Answer Correct ?    3 Yes 0 No

Question { 5884 }

Can we call a parameter from an action to other action?


Answer

Following are the ways to pass values from one action to
another.
- Test parameters
- Action parameters
- Environment variables

Is This Answer Correct ?    1 Yes 0 No

Question { 5012 }

Hi All,

I'm Akshaya here, could anybody please help me regarding
how to import the excel sheet to run time datatable. But
Pl. keep it in your knowledge is that excel sheet is opened.

Thanks,

Akshaya Madali
9823213538


Answer

FOR IMPORTING PARTICULAR SHEET FROM THE EXCEL BOOK.
--------------------------------------------------
Datatable.importsheet "D:\test1.xls",1,1

FOR IMPORTING WHOLE EXCEL BOOK(DEFAULT 3 SHEETS)
------------------------------------------------
Datatable.import "D:\test1.xls"

Is This Answer Correct ?    1 Yes 2 No