Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Interview Questions - 4
#2
Not Solved
Answer for Question 1:
Code:
Dim TestItem
TestItem=Array ("Pickle", "Pineapple","Papaya")
' Returns "Pickle, Pineapple, Papaya"
Dim TestShoppingList  
TestShoppingList=Join(TestItem, ", ")
[hr]
Answer for Question 2:
OTA is the QC/TD API that can be used very effectively to work with Quality Center ot Test Director.

Below are some simple example usages of OTA.
For more info, refer the OTA doc that comes along with QC/TD.
Searching the support site and sqa forums will also give valuable inputs.

1. Adding a Manual Test case through QTP
The below code can be used to create a manual test case into QC, provided QTP is already connected to QC.
Code:
Dim td 'As New TDConnection
Dim dsf 'As DesignStepFactory
Dim tf 'As TestFactory
Dim t 'As Test
Dim ds 'As DesignStep

Set td = QCUtil.TDConnection
Set tf = td.TestFactory
t = tf.AddItem("New Manual test")
t.Post
Set dsf = t.DesignStepFactory

For i = 1 To 5
Set ds = dsf.AddItem(Null)
ds.Field("DS_STEP_NAME") = "Step " & i
ds.Field("DS_DESCRIPTION") = "The design step description"
ds.Field("DS_EXPECTED") = "The expected"
ds.Post
Next
Reply


Messages In This Thread
Interview Questions - 4 - by supputuri - 06-04-2012, 05:35 PM
RE: Interview Questions - 4 - by techshashankqtp - 07-08-2013, 01:02 AM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Interview Questions praveen.sharma 4 5,548 08-23-2022, 02:07 PM
Last Post: ahmad3029
  Interview Questions supputuri 12 12,684 08-23-2022, 11:45 AM
Last Post: ahmad3029
  Interview question nandha 0 1,734 03-28-2018, 03:32 PM
Last Post: nandha
  Few Interview Question asked in various Companies.. shailesh.2.singh@bt.com 1 3,289 08-08-2017, 09:24 AM
Last Post: mallika199317@gmail.com
  Interview Question raghavaqtp 1 3,538 12-20-2014, 09:55 PM
Last Post: supputuri

Forum Jump:


Users browsing this thread: 1 Guest(s)