Automation Testing AllOther Interview Questions
Questions Answers Views Company eMail

Explain me what is the difference between setspeed() and sleep() methods?

582

Tell me what is an absolute xpath?

528

Tell me what is the purpose of getoptions() method?

521

Do you know when autoit is used?

561

Please explain what is a relative xpath?

561

What are the frameworks available in rc?

569

Which package can be imported while working with webdriver?

805

Explain what is the hybrid framework?

563

Explain what is a relative xpath?

549

What is the purpose of getoptions() method?

584

What is a xpath?

561

Tell me which web driver implementation is the fastest?

511

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

534

Can we find all links on a web page?

522

How to check if an element is visible on the page?

531


Post New Automation Testing AllOther Questions

Un-Answered Questions { Automation Testing AllOther }

What steps are needed in developing and running a software test?

538


hi to all, if we open a browser(for ex. yahoomail.com) using navigate command. the cursor by default focussing on the 'yahoo id' html edit box. how to get the label(ie.,yahoo id) of that html edit box using descriptive program. here we should not use identify tool to get the property,thtml editbox method. by tracing the cursor position we have to get the label name. is it possible? please let me know.

1722


Is automation testing a black box testing or white-box testing?

510


What is the deference between automation tools and management tools?

537


How can the user get a text of a web element?

521






How could you explain the main difference between webdriver and rc?

512


22. Scenario: There are 1 to 100 numbers. Each number should be keep in the each column like from A column to Z column ie 1 to 26. From 27 to 52 should be in 2nd row in the excel sheet. This has to be continue till 100. How do you write Java program and what are various methods.

1443


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

2145


Is there any freeware tool for automation testing of mobile applications for BlackBerry and iPhone platforms ?

2505


Tell me what are the different types of navigation commands?

497


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

613


Explain me which web driver implementation is the fastest?

539


What is testng and why is it better than junit?

560


In general, how do you see automation fitting into the overall process of testing?

1410


Hello, Is there any source from which i can get any live tutorial or trial of Automation tools?? Also i have a query that is there any certification course or exam available for Automation tools QTP and QC?

1322