please guide me to get some automation tool for functional
testing in freeware and how to work with it?Its emergency
Answer / vishal shah
Hi,
You can use Selenium IDE . You can find it under mozilla
firefox Addon.
It is easy to use , You have to just start recording & then
complete your functional process & save this test suite.
After that you can use it whenever u want to use it in
regression testing.
| Is This Answer Correct ? | 2 Yes | 0 No |
Describe some problem that you had with automating testing tool.
What type problems faced in Recording the Apllication through WinRunner and QTP?
What tools are available for support of testing during software development life cycle?
Plz suggest me a tool which supports ActiveX controls
Explain what is the hybrid framework?
what is defferevce between QA and QC
Manually in a page 10 check boxes is there.so 5 check box "on" and 5 check box "off" so using descriptive program how to know how many "on" and how many "off" plz help me this question answer?
What is the major difference between Acceptance test , Functional test , Usability test and Performance test with special reference to auotomotive domain
Stop automating the tests which run once?
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
hi i m runing a login script using multiple data by importing from excel sheet, now i want to get a status pass or fail each time the script run for multiple data?? so anyone can help me out?
Name some of the commonly used automation testing tools that are used for functional automation.