Pages
Standard Library
Search
Entities
Test.Html
Functions
assertActiveElement
(
context
:
Test.Context(Dom.Element)
selector
:
String
)
:
Test.Context(Dom.Element)
assertCssOf
(
context
:
Test.Context(Dom.Element)
selector
:
String
property
:
String
value
:
String
)
:
Test.Context(Dom.Element)
Asserts the value of a CSS property on the element that matches the given selector.
assertElementExists
(
context
:
Test.Context(Dom.Element)
selector
:
String
)
:
Test.Context(Dom.Element)
Asserts that there is an element that matches the given selector.
assertTextOf
(
context
:
Test.Context(Dom.Element)
selector
:
String
value
:
String
)
:
Test.Context(Dom.Element)
Asserts the text of the element that matches the given selector.
Starts a test of an Html
node.
Test.Html.start(<div><{ "Content" }></div>)
Triggers a click event on the element that matches the given selector.
triggerMouseDown
(
context
:
Test.Context(Dom.Element)
selector
:
String
)
:
Test.Context(Dom.Element)
Triggers a mouse down event on the element that matches the given selector.
triggerMouseMove
(
context
:
Test.Context(Dom.Element)
selector
:
String
)
:
Test.Context(Dom.Element)
Triggers a mouse move event on the element that matches the given selector.
Triggers a mouse up event on the element that matches the given selector.