Uses of Interface
com.teamdev.jxbrowser.dom.Element
Packages that use Element
Package
Description
Provides the interfaces and classes for the Document Object Model (DOM).
-
Uses of Element in com.teamdev.jxbrowser.dom
Subinterfaces of Element in com.teamdev.jxbrowser.domModifier and TypeInterfaceDescriptioninterfaceAn HTML DOM form control element such as input, select, textarea, etc.interfaceAn HTML DOM form element.interfaceAn HTML DOM frame or iframe element.interfaceAn HTML DOM image element.interfaceAn HTML DOM input element.interfaceAn HTML DOM option element.interfaceAn HTML DOM select element.interfaceAn HTML DOM textarea element.Methods in com.teamdev.jxbrowser.dom that return ElementModifier and TypeMethodDescriptionDocument.createElement(String tagName) Creates and returns a new DOM element with the giventagName.ElementAttributes.element()ReturnsElement, on which these attributes are specified.Methods in com.teamdev.jxbrowser.dom that return types with arguments of type ElementModifier and TypeMethodDescriptionDocument.documentElement()Returns anOptionalthat contains the document HTML element that usually represents HTML tag, otherwise an emptyOptionalif the document element is not available.SearchContext.findElementByClassName(String className) Returns the firstElementobject found in the current search context by the givenclassName.SearchContext.findElementByCssSelector(String cssSelector) Returns the firstElementobject found in the current search context by the givencssSelector.SearchContext.findElementById(String id) Returns the firstElementobject found in the current search context by the givenid.SearchContext.findElementByName(String name) Returns the firstElementobject found in the current search context by the givenname.SearchContext.findElementByTagName(String tagName) Returns the firstElementobject found in the current search context by the giventagName.SearchContext.findElementsByClassName(String className) Returns an immutable list of theElementobjects found in the current search context by the givenclassName.SearchContext.findElementsByCssSelector(String cssSelector) Returns an immutable list of theElementobjects found in the current search context by the givencssSelector.SearchContext.findElementsById(String id) Returns an immutable list of theElementobjects found in the current search context by the givenid.SearchContext.findElementsByName(String name) Returns an immutable list of theElementobjects found in the current search context by the givenname.SearchContext.findElementsByTagName(String tagName) Returns an immutable list of theElementobjects found in the current search context by the giventagName.Document.focusedElement()Returns anOptionalthat contains the currently focused element in the document, otherwise an emptyOptionalif there is no focused element in this document.Attribute.ownerElement()Returns anOptionalthat contains the owner element of the attribute if such owner exists, otherwise returns an emptyOptional.PointInspection.urlElement()Returns the linkElementwhen a link is located at the point.