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 AllOther Interview Questions
Questions Answers Views Company eMail

Tell us how to select a value in a dropdown?

1061

Tell us what is the difference between getwindowhandles() and getwindowhandle()?

1111

Tell me an example of the languages supported by webdriver?

1135

Tell us the difference between assert and verify commands?

1202

Tell us how can you find if an element is displayed on the screen?

1033

Do you know what is a xpath?

1066

Tell me what is the firefoxdriver, class or an interface? And which interface does it implement?

946

Tell us how to login into any site if it's showing any authentication pop-up for username and password?

1040

Tell me what is automation testing?

1072

Tell us how can you create html test report from your test script?

1065

Please explain what is the hybrid framework?

1130

Tell me what are the different types of navigation commands?

1 1373

Tell us how could you explain the main difference between webdriver and rc?

1074

Tell us what is the difference between @factory and @dataprovider annotation?

1171

Tell me what is intellij?

1259


Post New Automation Testing AllOther Questions

Un-Answered Questions { Automation Testing AllOther }

what is GDC

2226


Where will you maintain information like url, login, password?

1970


What are the points that are covered while planning phase of automation ?

1259


is there any one got offer from snapdeal?

4613


What do you think holds the testers back to do automation? Is there a way to overcome it?

1104


I want to test a mobile software by an automation tool which is a IP telephony based software designed for both ios and android phone, basically this apps is develop for make call though few low cost audio codecs from Aircraft to Ground and Ground to Aircraft so anyone can suggest me which testing tool we can use for it

2655


Explain me what is a framework and what are the frameworks available in rc?

1045


how can i count the no of edit field in a page and fill the multiple edit field

2535


Anyone have idea of jmeter.IF so pls contact to this mail id arun130887@hotmail.com

2032


What u mean by infrgistics control (What is infrgistics Controls)?

2189


How to Rcognize the Objects in the Web Page Dialog Using QTP

2568


How do you plan test automation?

2042


Tell me the fundamental difference between xpath and css selector?

1200


What COM Interfaces u r using in QTp While Connecting QC or TD? Or in QTP?Any body plz urgent...

2024


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

2666