Testing Interview Questions
Questions Answers Views Company eMail

WHAT IS THE PRESENT MARKET FOR LOAD RUNNER?ANY REQ IS THERE UP TO DEC 2012?

2 4188

Hello testers..This question is for u? If u have guts give the ans for this question?***" Manual tester daily process is ..Study the req.S preparing test scenarios

2 3790

what is the difference between bug log and defect report?

1 3730

exact definition of defect tracking?

1 3651

i want to know abt AGILENT8960 AND SAS TOOL.PLZ REPLY ME SOON

2288

is there any one got offer from snapdeal?

4145

write a programme to insert into elements in array?n finding duplicate characters in given sting?

SnapDeal,

1808

which is the best institute to learn load runner in hyderabad?

4 5336

can any one please tell me the full form of .g.t in silktest datadriven method

STC,

2585

suppose in ur company one new project is came for testing applictaion.. duration 1 year.. so,with in one week manual tester role starts and qtp(any) testers role starts..and others role starts,,,,BUT WHEN THE PERFORMANCE TESTER ROLE STARTS... in the midle of the project or ending of the project..and how many months it takes to starts the load runner tester role begins?

1 3193

Where we save the bugs?

Google,

2 4705

Find the 'String' from excel sheet and save to another sheet.But we don't know the string column number and row number?

4 6085

how do i write perfect test case for functional testing

2 4792

what is baic requierment of yahoo mail? what is baic requierment of atm? what is baic requierment of coffee machine?

2 4936

What is the main difference between Smoke and sanity testing? Can u plz give me some examples? And to answer in interwview?

Thought Works,

3 6166


Un-Answered Questions { Testing }

How we tested remote servers if client is installed in another place

1720


I created 3 actions in test suppose I want to run action 1 in single time, action 2 is 4 time what I do?

599


What are the main advantages of selenium?

502


What language is used by cucumber?

220


why QA team is necessary for an organization?

2619






What makes a good test engineer?

729


How QTP support all types of applications (platforms)?

4083


What is bottom-up testing?

610


Hai Friends I am working as a Software Test Engineer in Bangalore. I am taking Classes at weekends on Testing Concepts. I will teach will all the real time examples and writing the Test cases, Document Management and also about what are all the duties of a real time Test Engineer at a company. Course Fee is very minimal and only in week ends. For who attended the class any time support through phone and job guidence. Intrested Friends mail me at vinodhanandhan@gmail.com

1572


In MSBI also we need to write test cases please tell me because iam new to msbi

2969


What is a bug life cycle?

620


Where are automatic correlation options set?

592


Hi,all i have a desktop App. which have a feature, It's a demo version if u want full version then u have to perches it. Pls give me some idea ASAP how can i break the App.

1505


How can you give wait up to 10 seconds in qtp?

589


Hi, Below is the code that i ran on selenium RC using eclipse IDE and java coding.: package source; import org.testng.annotations.BeforeSuite; import org.testng.annotations.Test; import com.thoughtworks.selenium.*; public class parameterized extends SeleneseTestCase { private Selenium browser; public static void main(String []args) { String arr[] = new String[5]; arr[0]= "bert"; arr[1]= "regular"; arr[2]= "copyonly"; arr[3]= "doert"; arr[4]= "inter"; parameterized obj = new parameterized(); obj.setUp(); obj.login_parameterize(arr); } @BeforeSuite public void setUp() { browser = new DefaultSelenium("localhost",4444, "*chrome", "http://goolge.com"); browser.start(); browser.open("http://goolge.com"); browser.waitForPageToLoad("30000"); browser.windowMaximize(); browser.open("/"); browser.click("gb_23"); } @Test public void login_parameterize(String[] arr ) { for(int i=0;i<=5;i++) { for(int j=0;j<=2; j++) { browser.type("//input[@id='Email']", arr[i]); browser.type("//input[@id='Passwd']", arr[i]); browser.click("//input[@id='signIn']"); browser.waitForPageToLoad("30000"); } } } public void EnterValuesIntoTextField_CheckWithGetValue() throws Exception { selenium.open("http://www.essaywriter.co.uk"); assertEquals("", selenium.getValue("id=textInput")); selenium.type("id=textInput", "Text In The Field"); assertEquals("Text In The Field", selenium.getValue("id=textInput")); } } When i ran this test i got an error which says: "Method login_parameterize requires 1 parameters but 0 were supplied in the @Test annotation." Any help is much appreciated. thank Gab

2157