Hi, It seems that there was some attempt to support selenium test cases in the past by ofbiz.
Wondering about this as I can see below code snippet in *https://github.com/apache/ofbiz-framework/blob/trunk/framework/testtools/src/main/java/org/apache/ofbiz/testtools/ModelTestSuite.java <https://github.com/apache/ofbiz-framework/blob/trunk/framework/testtools/src/main/java/org/apache/ofbiz/testtools/ModelTestSuite.java>* else if ("webdriver-test".equals(nodeName)) { try { String className = "org.apache.ofbiz.testtools.WebDriverTest"; Class<?> cl; cl = Class.forName(className); Constructor<?> con = cl.getConstructor(String.class, Element.class); this.testList.add((Test) con.newInstance(caseName, testElement)); } catch (Exception e) { Debug.logError(e, MODULE); } } Just curious if it is still pretty much the case? Or is it a dead idea now.. Checking this as I cannot see *org.apache.ofbiz.testtools.WebDriverTest* class anywhere which is referenced in the above block. Regards, Sameer Apte
