Release Notes

- The forms test generator clears input fields before writing to them.

Code Changes

The return type of the method

    
    com.myitest4u.selenium.generator.ComGen

    public boolean createPredefinedTestStep(WebTestStep testStep, HtmlTag element, Long autReleaseId,
                          ArrayList testSteps, boolean testDataExist, Connection conn) throws SQLException;
     
    

changed to ITagType.
The return value is null if the tag is not handled. Change

       
    boolean result = createPredefinedTestStep(testStep, element, autReleaseId, myTestSteps, false, conn);
if (result == false) {

to

       
    ITagType iTagType = createPredefinedTestStep(testStep, element, autReleaseId, myTestSteps, false, conn);
if (iTagType == null) {;