MCPcopy Index your code
hub / github.com/HtmlUnit/htmlunit / doType

Method doType

src/main/java/org/htmlunit/html/HtmlElement.java:809–814  ·  view source on GitHub ↗

Performs the effective type action, called after the keyPress event and before the keyUp event. @param c the character you with to simulate typing @param lastType is this the last character to type

(final char c, final boolean lastType)

Source from the content-addressed store, hash-verified

807 * @param lastType is this the last character to type
808 */
809 protected void doType(final char c, final boolean lastType) {
810 final DomText domText = getDoTypeNode();
811 if (domText != null) {
812 domText.doType(c, this, lastType);
813 }
814 }
815
816 /**
817 * Performs the effective type action, called after the keyPress event and before the keyUp event.

Callers 1

typeMethod · 0.95

Calls 2

getDoTypeNodeMethod · 0.95
doTypeMethod · 0.95

Tested by

no test coverage detected