ByPlaceholderText topic
getByPlaceholderText, queryByPlaceholderText, getAllByPlaceholderText, queryAllByPlaceholderText, findByPlaceholderText, findAllByPlaceholderText
Functions
-
findAllByPlaceholderText<
E extends Element> (Node container, dynamic text, {bool exact = true, NormalizerFn normalizer([NormalizerOptions?])?, Duration? timeout, Duration interval = defaultAsyncCallbackCheckInterval, QueryTimeoutFn? onTimeout, MutationObserverOptions mutationObserverOptions = defaultMutationObserverOptions}) → Future< Async ByPlaceholderText QueriesList< E> > -
Returns a list of elements with the given
text
as the value of theplaceholder
attribute, defaulting to anexact
match after waiting1000ms
(or the specifiedtimeout
duration). -
findByPlaceholderText<
E extends Element> (Node container, dynamic text, {bool exact = true, NormalizerFn normalizer([NormalizerOptions?])?, Duration? timeout, Duration interval = defaultAsyncCallbackCheckInterval, QueryTimeoutFn? onTimeout, MutationObserverOptions mutationObserverOptions = defaultMutationObserverOptions}) → Future< Async ByPlaceholderText QueriesE> -
Returns a future with a single element value with the given
text
as the value of theplaceholder
attribute, defaulting to anexact
match after waiting1000ms
(or the specifiedtimeout
duration). -
getAllByPlaceholderText<
E extends Element> (Node container, dynamic text, {bool exact = true, NormalizerFn normalizer([NormalizerOptions?])?}) → List< ByPlaceholderText QueriesE> -
Returns a list of elements with the given
text
as the value of theplaceholder
attribute, defaulting to anexact
match. -
getByPlaceholderText<
E extends Element> (Node container, dynamic text, {bool exact = true, NormalizerFn normalizer([NormalizerOptions?])?}) → E ByPlaceholderText Queries -
Returns a single element with the given
text
as the value of theplaceholder
attribute, defaulting to anexact
match. -
queryAllByPlaceholderText<
E extends Element> (Node container, dynamic text, {bool exact = true, NormalizerFn normalizer([NormalizerOptions?])?}) → List< ByPlaceholderText QueriesE> -
Returns a list of elements with the given
text
as the value of theplaceholder
attribute, defaulting to anexact
match. -
queryByPlaceholderText<
E extends Element> (Node container, dynamic text, {bool exact = true, NormalizerFn normalizer([NormalizerOptions?])?}) → E? ByPlaceholderText Queries -
Returns a single element with the given
text
as the value of theplaceholder
attribute, defaulting to anexact
match.