What is mean by ARGO testing? can any one please explain

Answer Posted / mer

Argo is a software company based in Dallas, TX which
produces a proprietary software solution for the banking
industry. The software used commonly referred to as
BankPro. The own about 40% of the market.

Is This Answer Correct ?    0 Yes 1 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Do you know what is selenese?

628


Explain me what the webdriver supported mobile testing drivers do you know?

670


wat is database testing....how to develop data driven framework in selenium enviromnent. please explaing in detail

1714


Anyone aware of Test Runner (ETL Automation Testing tool) if so please help me with material in keerthi.smile14@gmail.com

1197


List out some of the automation tools which could be integrated with selenium to achieve continuous testing.

569






What is tsl?

661


What is the difference between continue and next sentence?

666


Can you achieve 100% automation?

669


Which protocol cam be used to makw jdbc connection woth loadrunner

667


Name the frameworks that are used in software automation testing?

626


Where do we get the QTP and Load runner softwares CDs ( Original ) in chennai

1889


How would you test your own element locator?

645


suggest me the free online books on software testing?

1586


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

2235


Where you have applied oops in automation framework?

759