Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...



Automation Testing Interview Questions
Questions Answers Views Company eMail

How do you plan test automation?

1979

Can test automation improve test effectiveness?

2 5834

What is data - driven automation?

2665

What are the main attributes of test automation?

ATS, HCL,

3 7559

Does automation replace manual testing?

2 5380

How will you choose a tool for test automation?

1 4707

How you will evaluate the tool for test automation?

1 5733

What are main benefits of test automation?

2 6182

What could go wrong with test automation?

1 4632

How you will describe testing activities?

1 4381

What testing activities you may want to automate?

1 5068

Describe common problems of test automation.

1 4158

What types of scripting techniques for test automation do you know?

3 8863

What are principles of good testing scripts for automation?

Fujitsu,

1 3503

What tools are available for support of testing during software development life cycle?

2 4855


Un-Answered Questions { Automation Testing }

What are the Disadvantages of shared object repository?

1127


What are the types of checkpoints is available in loadrunner?

1198


Explain building blocks of the bpt framework ?

1101


How does loadrunner execute a performance scenario?

1108


Can you please explain the procedure of connecting testdirector in qtp?

1011


How to capture screenshot in webdriver?

908


What are the different types of scripting techniques for automation testing?

1028


Define parameterizing?

1076


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

2611


What difference do you make between soft vs. Hard to say in selenium?

960


What are the major differences between jmeter and load runner.

717


How to check a Selenium checkbox?

1150


What are the two modes of recording?

1067


List down the primary features of a good automation tool?

1026


What is a ‘test plan’? What is a ‘test case’?

1051