can anybody tell me " which automation framework u r using?"
some interviewer asked this quesion? pls give me answer

Answer Posted / kedar prajapati

FrameWork: Framework is the collection of predefined
classes and variables which can be reused .It is developped
only when the application under test is a contituous
developement process ie, there must be subsequent releases
of the AUT.

We declare all the objects at one location in multiple
files and the business logic(ie,classes and functions are
placed at one place). who ever wants to use , will go and
use these class and methods and the only thing they need to
do is to write the new test cases.

Framework implementation may be DataDriven or
Traditional also.

Every organization will have their own framework based
on the Application under test .

Is This Answer Correct ?    0 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

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

524


Differentiate between hdam and hidam database?

560


What are the steps to perform Load and Stress testing on a Website? What resources do I need to do this? Please advise. Thanks in advance.

1542


What is in-house tool?

556


What is mean by ARGO testing? Can you please explain anyone

1603






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


Is automation testing a complete replacement for manual software testing?

580


all clients are using at once if any problem raise?

1880


what is aom and how to add object repository? i am very new to QTP please help me

1454


what is the difference between keyword driven frame work and data driven frame work.

1885


What type of scenarios can't be automated?

572


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

506


How software testing is handled?

509


VSTET (Visual Studio Team Edition for Testers) which is in TFS (Team Foundation Server) - In what way is VSTET better than QTP?

3207


Tell me the fundamental difference between xpath and css selector?

570