Package org.ofbiz.testtools.seleniumxml

Examples of org.ofbiz.testtools.seleniumxml.SeleniumXml


        this.children = children;
    }

    public void runTest() throws TestCaseException {

        this.currentTest = new SeleniumXml(this.parent);
        this.currentTest.setUserName(this.parent.getUserName());
        this.currentTest.setPassword(this.parent.getPassword());
        Map<String, Object> dataMap = this.parent.getMap();
        List<Map<String, Object>> dataList = UtilGenerics.cast(dataMap.get(this.dataListName));
        //for (Map<String, Object> mp: dataList) {
View Full Code Here


        //Iterate through entire list of data
        if(iter == -1) {
            iter = this.dataList.__len__();
        }

        this.currentTest = new SeleniumXml(this.parent);
        for( int i=0; i<iter; i++) {
            loadData();
            currentTest.runCommands(this.children);
            next();
        }
View Full Code Here

TOP

Related Classes of org.ofbiz.testtools.seleniumxml.SeleniumXml

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.