QElement
instances represent individual HTML elements. You'll use them to make assertions about your elements. The methods you'll use most often are element.assert()
, for making style assertions, and element.getRawStyle()
, for getting styles that element.assert()
doesn't support yet.
QElement instances have several descriptor properties. They are documented in the descriptor list.
Stability: 2 - Unstable
Check whether the element's descriptors match a set of expected values. If they match, nothing happens; if they don't match, this method throws an exception explaining the difference.
element.assert(expected, message)
-
expected (object)
An object containing one or more QElement descriptors (top
,right
, etc.) as keys, along with the expected value as another descriptor or a hard-coded value. -
message (optional string)
A message to include when the assertion fails and an exception is thrown.
Example:
element.assert({
top: 13, // compare to a hard-coded value
bottom: otherElement.top // compare to another descriptor
});
Stability: 2 - Unstable
Compare the element's descriptors to a set of expected values. This is the same as QElement.assert()
, except that it returns a string rather than throwing an exception.
diff = element.diff(expected)
-
diff (string)
A human-readable description of any differences found, or an empty string if none. -
expected (object)
An object containing one or more QElement descriptors (top
,right
, etc.) as keys, along with the expected value as another descriptor or hard-coded value.
Stability: 2 - Unstable
Determine how the browser is actually rendering an element's style. This uses getComputedStyle() under the covers. (On IE 8, it uses currentStyle).
style = element.getRawStyle(property)
-
style (string)
The browser's computed style, or an empty string if the style wasn't recognized. -
property (string)
The name of the property to retrieve. Should always be written in kebab-case, even on IE 8.
Example: var fontSize = element.getRawStyle("font-size");
Compatibility Note: getRawStyle
does not attempt to resolve cross-browser differences, with two exceptions:
- IE 8 uses
currentStyle
rather thangetComputedStyle()
, and kebab-case property names are converted to camelCase to match currentStyle's expectation. - Different browsers return
null
,undefined
, or""
when a property can't be found. Quixote always returns""
.
Compatibility Note: When using getRawStyle("font-size")
, be aware that Mobile Safari may increase the size of small fonts. (You can prevent this behavior by using -webkit-text-size-adjust: 100%;
in your CSS.) You can detect this behavior by using quixote.browser.enlargesFonts()
.
Stability: 2 - Unstable
Determine where an element is displayed within the frame viewport, as computed by the browser. This uses getBoundingClientRect() under the covers. Note that scrolling the document will cause the position to change. You can use QFrame.getRawScrollPosition()
to compensate for the effect of scrolling.
position = element.getRawPosition()
position (object)
The position of the element relative to the top-left corner of the viewport. In other words, if you scroll the document down 10 pixels,top
will be 10 pixels larger. All values include border and padding, but not margin.top (number)
top edgeright (number)
right edgebottom (number)
bottom edgeleft (number)
left edgewidth (number)
width (right edge minus left edge)height (number)
height (bottom edge minus top edge)
Example: var top = element.getRawPosition().top;
Compatibility Note: getRawPosition()
does not attempt to resolve cross-browser differences, with one exception:
- IE 8's
getBoundingClientRect()
does not havewidth
orheight
properties, butgetRawPosition()
calculates them from the other properties.
Stability: 2 - Unstable
Remove the element from the DOM.
element.remove()
Stability: 1 - Experimental
Retrieve the underlying HTMLElement
DOM element for the frame.
dom = element.toDomElement()
dom (
HTMLElement
)
The DOM element.