In realtime what is the Testing Process especially in
automation plz its very urgent
Answer Posted / automation user
Select the Test cases to automate
Create a Test plan for Test automation.
Follow the development life cycle like below
Design your test automation based on your selected
test case -
Find the common functionality through out the
testing application
Create common Global functions or follow OOP concept
Do not forget to include error verification in the script.
Create a test script
Unit test your script
Create the Test automation Suite
Execute the suite.
Analyze the Results
Log the defect if the script fails
| Is This Answer Correct ? | 4 Yes | 0 No |
Post New Answer View All Answers
Where to maintain information like login, password and url?
you have same applications (same server configaration)A&B you are doing nonfunctionality testing . what they differ in?
I am surekha new commer for this site? I have some doubt's pls clarify it..... I finished my B.tech and S/w Testing Course Now iam searching for a job in Testing, I did not have any experience in real time projects. Any body can send me the sample Testcases,Srs,Matrix for Banking,ERP Projects etc.Here is my email id surekhai@yahoo.com
Hi everyone, Are you looking for "worksoft certify" automation tool training online? We have experienced corporate Worksoft certify trainers. We also provide support Worksoft certify automation issues. Please contact us Automationsolutions@yahoo.com
What is test tool?
Which test cases can be automated?
What criteria do you consider for automating a test?
Explain some disadvantages to manual software testing?
How do you plan test automation?
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
How could you explain the main difference between webdriver and rc?
List some advantages and disadvantages of automation testing.
Which package can be imported while working with webdriver?
How do you select which automation tool is best suited for you?
5. What are the tests you are conducting through winrunner?