ByTitle topic
getByTitle, queryByTitle, getAllByTitle, queryAllByTitle, findByTitle, findAllByTitle
Functions
-
findAllByTitle<
E extends Element> (Node container, dynamic title, {bool exact = true, NormalizerFn normalizer([NormalizerOptions?])?, Duration? timeout, Duration interval = defaultAsyncCallbackCheckInterval, QueryTimeoutFn? onTimeout, MutationObserverOptions mutationObserverOptions = defaultMutationObserverOptions}) → Future< Async ByTitle QueriesList< E> > -
Returns a list of elements with the given
title
as the value of thetitle
attribute, defaulting to anexact
match after waiting1000ms
(or the specifiedtimeout
duration). -
findByTitle<
E extends Element> (Node container, dynamic title, {bool exact = true, NormalizerFn normalizer([NormalizerOptions?])?, Duration? timeout, Duration interval = defaultAsyncCallbackCheckInterval, QueryTimeoutFn? onTimeout, MutationObserverOptions mutationObserverOptions = defaultMutationObserverOptions}) → Future< Async ByTitle QueriesE> -
Returns a future with a single element value with the given
title
as the value of thetitle
attribute, defaulting to anexact
match after waiting1000ms
(or the specifiedtimeout
duration). -
getAllByTitle<
E extends Element> (Node container, dynamic title, {bool exact = true, NormalizerFn normalizer([NormalizerOptions?])?}) → List< ByTitle QueriesE> -
Returns a list of elements with the given
title
as the value of thetitle
attribute, defaulting to anexact
match. -
getByTitle<
E extends Element> (Node container, dynamic title, {bool exact = true, NormalizerFn normalizer([NormalizerOptions?])?}) → E ByTitle Queries -
Returns a single element with the given
title
as the value of thetitle
attribute, defaulting to anexact
match. -
queryAllByTitle<
E extends Element> (Node container, dynamic title, {bool exact = true, NormalizerFn normalizer([NormalizerOptions?])?}) → List< ByTitle QueriesE> -
Returns a list of elements with the given
title
as the value of thetitle
attribute, defaulting to anexact
match. -
queryByTitle<
E extends Element> (Node container, dynamic title, {bool exact = true, NormalizerFn normalizer([NormalizerOptions?])?}) → E? ByTitle Queries -
Returns a single element with the given
title
as the value of thetitle
attribute, defaulting to anexact
match.