IEForm.java :  » Testing » watij » watij » runtime » ie » Java Open Source

Java Open Source » Testing » watij 
watij » watij » runtime » ie » IEForm.java
package watij.runtime.ie;

import com.jniwrapper.win32.ie.dom.HTMLForm;
import org.w3c.dom.Element;
import watij.elements.Form;

public class IEForm extends IEHtmlElement implements Form {

    public IEForm(Element element, IE ie) throws Exception {
        super(element, ie);
    }

    public void submit() throws Exception {
        ((HTMLForm) htmlElement()).submit();
    }
}
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.