WithinQueries class Queries
Queries scoped to the provided container.
- Implementers
- Annotations
- 
    - @sealed
 
Properties
Methods
- 
  findAllByAltText<E extends Element> (dynamic text, {bool exact = true, NormalizerFn normalizer([NormalizerOptions?])?, Duration? timeout, Duration interval = defaultAsyncCallbackCheckInterval, QueryTimeoutFn? onTimeout, MutationObserverOptions mutationObserverOptions = defaultMutationObserverOptions}) → Future< List< E> >
- 
  Returns a list of ImageElements, InputElements and/or AreaElements with the given textas the value of thealtattribute, defaulting to anexactmatch after waiting1000ms(or the specifiedtimeoutduration).inherited
- 
  findAllByDisplayValue<E extends Element> (dynamic value, {bool exact = true, NormalizerFn normalizer([NormalizerOptions?])?, Duration? timeout, Duration interval = defaultAsyncCallbackCheckInterval, QueryTimeoutFn? onTimeout, MutationObserverOptions mutationObserverOptions = defaultMutationObserverOptions}) → Future< List< E> >
- 
  Returns a list of InputElement, TextAreaElement or SelectElement that has the matching valuedisplayed, defaulting to anexactmatch after waiting 1000ms (or the providedtimeoutduration).inherited
- 
  findAllByLabelText<E extends Element> (dynamic text, {bool exact = true, NormalizerFn normalizer([NormalizerOptions?])?, String? selector, Duration? timeout, Duration interval = defaultAsyncCallbackCheckInterval, QueryTimeoutFn? onTimeout, MutationObserverOptions mutationObserverOptions = defaultMutationObserverOptions}) → Future< List< E> >
- 
  Returns a list of elements that are associated with a LabelElement with the given text, defaulting to anexactmatch after waiting 1000ms (or the providedtimeoutduration).inherited
- 
  findAllByPlaceholderText<E extends Element> (dynamic text, {bool exact = true, NormalizerFn normalizer([NormalizerOptions?])?, Duration? timeout, Duration interval = defaultAsyncCallbackCheckInterval, QueryTimeoutFn? onTimeout, MutationObserverOptions mutationObserverOptions = defaultMutationObserverOptions}) → Future< List< E> >
- 
  Returns a list of elements with the given textas the value of theplaceholderattribute, defaulting to anexactmatch after waiting1000ms(or the specifiedtimeoutduration).inherited
- 
  findAllByRole<E extends Element> (dynamic role, {bool exact = true, NormalizerFn normalizer([NormalizerOptions?])?, dynamic name, bool? selected, bool? checked, bool? pressed, bool? expanded, bool queryFallbacks = false, int? level, Duration? timeout, Duration interval = defaultAsyncCallbackCheckInterval, QueryTimeoutFn? onTimeout, MutationObserverOptions mutationObserverOptions = defaultMutationObserverOptions}) → Future< List< E> >
- 
  Returns a list of elements with the given rolevalue, defaulting to anexactmatch after waiting 1000ms (or the providedtimeoutduration).inherited
- 
  findAllByTestId<E extends Element> (dynamic testId, {bool exact = true, NormalizerFn normalizer([NormalizerOptions?])?, Duration? timeout, Duration interval = defaultAsyncCallbackCheckInterval, QueryTimeoutFn? onTimeout, MutationObserverOptions mutationObserverOptions = defaultMutationObserverOptions}) → Future< List< E> >
- 
  Returns a list of elements with the given testIdvalue for thedata-test-idattribute, defaulting to anexactmatch after waiting 1000ms (or the providedtimeoutduration).inherited
- 
  findAllByText<E extends Element> (dynamic text, {bool exact = true, NormalizerFn normalizer([NormalizerOptions?])?, String? selector, dynamic ignore = 'script', Duration? timeout, Duration interval = defaultAsyncCallbackCheckInterval, QueryTimeoutFn? onTimeout, MutationObserverOptions mutationObserverOptions = defaultMutationObserverOptions}) → Future< List< E> >
- 
  Returns a list of elements with the given textcontent, defaulting to anexactmatch after waiting 1000ms (or the providedtimeoutduration).inherited
- 
  findAllByTitle<E extends Element> (dynamic title, {bool exact = true, NormalizerFn normalizer([NormalizerOptions?])?, Duration? timeout, Duration interval = defaultAsyncCallbackCheckInterval, QueryTimeoutFn? onTimeout, MutationObserverOptions mutationObserverOptions = defaultMutationObserverOptions}) → Future< List< E> >
- 
  Returns a list of elements with the given titleas the value of thetitleattribute, defaulting to anexactmatch after waiting1000ms(or the specifiedtimeoutduration).inherited
- 
  findByAltText<E extends Element> (dynamic text, {bool exact = true, NormalizerFn normalizer([NormalizerOptions?])?, Duration? timeout, Duration interval = defaultAsyncCallbackCheckInterval, QueryTimeoutFn? onTimeout, MutationObserverOptions mutationObserverOptions = defaultMutationObserverOptions}) → Future< E> 
- 
  Returns a future with a single ImageElement, InputElement or AreaElement value with the given textas the value of thealtattribute, defaulting to anexactmatch after waiting1000ms(or the specifiedtimeoutduration).inherited
- 
  findByDisplayValue<E extends Element> (dynamic value, {bool exact = true, NormalizerFn normalizer([NormalizerOptions?])?, Duration? timeout, Duration interval = defaultAsyncCallbackCheckInterval, QueryTimeoutFn? onTimeout, MutationObserverOptions mutationObserverOptions = defaultMutationObserverOptions}) → Future< E> 
- 
  Returns a future with a single InputElement, TextAreaElement or SelectElement that has the matching valuedisplayed, defaulting to anexactmatch after waiting 1000ms (or the providedtimeoutduration).inherited
- 
  findByLabelText<E extends Element> (dynamic text, {bool exact = true, NormalizerFn normalizer([NormalizerOptions?])?, String? selector, Duration? timeout, Duration interval = defaultAsyncCallbackCheckInterval, QueryTimeoutFn? onTimeout, MutationObserverOptions mutationObserverOptions = defaultMutationObserverOptions}) → Future< E> 
- 
  Returns a future with a single element that is associated with a LabelElement with the given text, defaulting to anexactmatch after waiting 1000ms (or the providedtimeoutduration).inherited
- 
  findByPlaceholderText<E extends Element> (dynamic text, {bool exact = true, NormalizerFn normalizer([NormalizerOptions?])?, Duration? timeout, Duration interval = defaultAsyncCallbackCheckInterval, QueryTimeoutFn? onTimeout, MutationObserverOptions mutationObserverOptions = defaultMutationObserverOptions}) → Future< E> 
- 
  Returns a future with a single element value with the given textas the value of theplaceholderattribute, defaulting to anexactmatch after waiting1000ms(or the specifiedtimeoutduration).inherited
- 
  findByRole<E extends Element> (dynamic role, {bool exact = true, NormalizerFn normalizer([NormalizerOptions?])?, dynamic name, bool? selected, bool? checked, bool? pressed, bool? expanded, bool queryFallbacks = false, int? level, Duration? timeout, Duration interval = defaultAsyncCallbackCheckInterval, QueryTimeoutFn? onTimeout, MutationObserverOptions mutationObserverOptions = defaultMutationObserverOptions}) → Future< E> 
- 
  Returns a future with a single element value with the given rolevalue, defaulting to anexactmatch after waiting 1000ms (or the providedtimeoutduration).inherited
- 
  findByTestId<E extends Element> (dynamic testId, {bool exact = true, NormalizerFn normalizer([NormalizerOptions?])?, Duration? timeout, Duration interval = defaultAsyncCallbackCheckInterval, QueryTimeoutFn? onTimeout, MutationObserverOptions mutationObserverOptions = defaultMutationObserverOptions}) → Future< E> 
- 
  Returns a future with a single element value with the given testIdvalue for thedata-test-idattribute, defaulting to anexactmatch after waiting 1000ms (or the providedtimeoutduration).inherited
- 
  findByText<E extends Element> (dynamic text, {bool exact = true, NormalizerFn normalizer([NormalizerOptions?])?, String? selector, dynamic ignore = 'script', Duration? timeout, Duration interval = defaultAsyncCallbackCheckInterval, QueryTimeoutFn? onTimeout, MutationObserverOptions mutationObserverOptions = defaultMutationObserverOptions}) → Future< E> 
- 
  Returns a future with a single element value with the given textcontent, defaulting to anexactmatch after waiting 1000ms (or the providedtimeoutduration).inherited
- 
  findByTitle<E extends Element> (dynamic title, {bool exact = true, NormalizerFn normalizer([NormalizerOptions?])?, Duration? timeout, Duration interval = defaultAsyncCallbackCheckInterval, QueryTimeoutFn? onTimeout, MutationObserverOptions mutationObserverOptions = defaultMutationObserverOptions}) → Future< E> 
- 
  Returns a future with a single element value with the given titleas the value of thetitleattribute, defaulting to anexactmatch after waiting1000ms(or the specifiedtimeoutduration).inherited
- 
  getAllByAltText<E extends Element> (dynamic text, {bool exact = true, NormalizerFn normalizer([NormalizerOptions?])?}) → List< E> 
- 
  Returns a list of ImageElements, InputElements and/or AreaElements  with the given textas the value of thealtattribute, defaulting to anexactmatch.inherited
- 
  getAllByDisplayValue<E extends Element> (dynamic value, {bool exact = true, NormalizerFn normalizer([NormalizerOptions?])?}) → List< E> 
- 
  Returns a list of InputElements, TextAreaElements or SelectElements that have the matching valuedisplayed, defaulting to anexactmatch.inherited
- 
  getAllByLabelText<E extends Element> (dynamic text, {bool exact = true, NormalizerFn normalizer([NormalizerOptions?])?, String? selector}) → List< E> 
- 
  Returns a list of elements that are associated with a LabelElement with the given text, defaulting to anexactmatch.inherited
- 
  getAllByPlaceholderText<E extends Element> (dynamic text, {bool exact = true, NormalizerFn normalizer([NormalizerOptions?])?}) → List< E> 
- 
  Returns a list of elements with the given textas the value of theplaceholderattribute, defaulting to anexactmatch.inherited
- 
  getAllByRole<E extends Element> (dynamic role, {bool exact = true, NormalizerFn normalizer([NormalizerOptions?])?, dynamic name, bool? selected, bool? checked, bool? pressed, bool? expanded, bool queryFallbacks = false, int? level}) → List< E> 
- 
  Returns a list of elements with the given rolevalue, defaulting to anexactmatch.inherited
- 
  getAllByTestId<E extends Element> (dynamic testId, {bool exact = true, NormalizerFn normalizer([NormalizerOptions?])?}) → List< E> 
- 
  Returns a list of elements with the given testIdvalue for thedata-test-idattribute, defaulting to anexactmatch.inherited
- 
  getAllByText<E extends Element> (dynamic text, {bool exact = true, NormalizerFn normalizer([NormalizerOptions?])?, String? selector, dynamic ignore = 'script'}) → List< E> 
- 
  Returns a list of elements with the given textcontent, defaulting to anexactmatch.inherited
- 
  getAllByTitle<E extends Element> (dynamic title, {bool exact = true, NormalizerFn normalizer([NormalizerOptions?])?}) → List< E> 
- 
  Returns a list of elements with the given titleas the value of thetitleattribute, defaulting to anexactmatch.inherited
- 
  getByAltText<E extends Element> (dynamic text, {bool exact = true, NormalizerFn normalizer([NormalizerOptions?])?}) → E 
- 
  Returns a single ImageElement, InputElement or AreaElement with the given textas the value of thealtattribute, defaulting to anexactmatch.inherited
- 
  getByDisplayValue<E extends Element> (dynamic value, {bool exact = true, NormalizerFn normalizer([NormalizerOptions?])?}) → E 
- 
  Returns a single InputElement, TextAreaElement or SelectElement that has the matching valuedisplayed, defaulting to anexactmatch.inherited
- 
  getByLabelText<E extends Element> (dynamic text, {bool exact = true, NormalizerFn normalizer([NormalizerOptions?])?, String? selector}) → E 
- 
  Returns a single element that is associated with a LabelElement with the given text, defaulting to anexactmatch.inherited
- 
  getByPlaceholderText<E extends Element> (dynamic text, {bool exact = true, NormalizerFn normalizer([NormalizerOptions?])?}) → E 
- 
  Returns a single element with the given textas the value of theplaceholderattribute, defaulting to anexactmatch.inherited
- 
  getByRole<E extends Element> (dynamic role, {bool exact = true, NormalizerFn normalizer([NormalizerOptions?])?, dynamic name, bool? selected, bool? checked, bool? pressed, bool? expanded, bool queryFallbacks = false, int? level}) → E 
- 
  Returns a single element with the given rolevalue, defaulting to anexactmatch.inherited
- 
  getByTestId<E extends Element> (dynamic testId, {bool exact = true, NormalizerFn normalizer([NormalizerOptions?])?}) → E 
- 
  Returns a single element with the given testIdvalue for thedata-test-idattribute, defaulting to anexactmatch.inherited
- 
  getByText<E extends Element> (dynamic text, {bool exact = true, NormalizerFn normalizer([NormalizerOptions?])?, String? selector, dynamic ignore = 'script'}) → E 
- 
  Returns a single element with the given textcontent, defaulting to anexactmatch.inherited
- 
  getByTitle<E extends Element> (dynamic title, {bool exact = true, NormalizerFn normalizer([NormalizerOptions?])?}) → E 
- 
  Returns a single element with the given titleas the value of thetitleattribute, defaulting to anexactmatch.inherited
- 
  noSuchMethod(Invocation invocation) → dynamic 
- 
  Invoked when a nonexistent method or property is accessed.
  inherited
- 
  queryAllByAltText<E extends Element> (dynamic text, {bool exact = true, NormalizerFn normalizer([NormalizerOptions?])?}) → List< E> 
- 
  Returns a list of ImageElements, InputElements and/or AreaElements  with the given textas the value of thealtattribute, defaulting to anexactmatch.inherited
- 
  queryAllByDisplayValue<E extends Element> (dynamic value, {bool exact = true, NormalizerFn normalizer([NormalizerOptions?])?}) → List< E> 
- 
  Returns a list of InputElements, TextAreaElements or SelectElements that have the matching valuedisplayed, defaulting to anexactmatch.inherited
- 
  queryAllByLabelText<E extends Element> (dynamic text, {bool exact = true, NormalizerFn normalizer([NormalizerOptions?])?, String? selector}) → List< E> 
- 
  Returns a list of elements that are associated with a LabelElement with the given text, defaulting to anexactmatch.inherited
- 
  queryAllByPlaceholderText<E extends Element> (dynamic text, {bool exact = true, NormalizerFn normalizer([NormalizerOptions?])?}) → List< E> 
- 
  Returns a list of elements with the given textas the value of theplaceholderattribute, defaulting to anexactmatch.inherited
- 
  queryAllByRole<E extends Element> (dynamic role, {bool exact = true, NormalizerFn normalizer([NormalizerOptions?])?, dynamic name, bool? selected, bool? checked, bool? pressed, bool? expanded, bool queryFallbacks = false, int? level}) → List< E> 
- 
  Returns a list of elements with the given rolevalue, defaulting to anexactmatch.inherited
- 
  queryAllByTestId<E extends Element> (dynamic testId, {bool exact = true, NormalizerFn normalizer([NormalizerOptions?])?}) → List< E> 
- 
  Returns a list of elements with the given testIdvalue for thedata-test-idattribute, defaulting to anexactmatch.inherited
- 
  queryAllByText<E extends Element> (dynamic text, {bool exact = true, NormalizerFn normalizer([NormalizerOptions?])?, String? selector, dynamic ignore = 'script'}) → List< E> 
- 
  Returns a list of elements with the given textcontent, defaulting to anexactmatch.inherited
- 
  queryAllByTitle<E extends Element> (dynamic title, {bool exact = true, NormalizerFn normalizer([NormalizerOptions?])?}) → List< E> 
- 
  Returns a list of elements with the given titleas the value of thetitleattribute, defaulting to anexactmatch.inherited
- 
  queryByAltText<E extends Element> (dynamic text, {bool exact = true, NormalizerFn normalizer([NormalizerOptions?])?}) → E? 
- 
  Returns a single ImageElement, InputElement or AreaElement with the given textas the value of thealtattribute, defaulting to anexactmatch.inherited
- 
  queryByDisplayValue<E extends Element> (dynamic value, {bool exact = true, NormalizerFn normalizer([NormalizerOptions?])?}) → E? 
- 
  Returns a single InputElement, TextAreaElement or SelectElement that has the matching valuedisplayed, defaulting to anexactmatch.inherited
- 
  queryByLabelText<E extends Element> (dynamic text, {bool exact = true, NormalizerFn normalizer([NormalizerOptions?])?, String? selector}) → E? 
- 
  Returns a single element that is associated with a LabelElement with the given text, defaulting to anexactmatch.inherited
- 
  queryByPlaceholderText<E extends Element> (dynamic text, {bool exact = true, NormalizerFn normalizer([NormalizerOptions?])?}) → E? 
- 
  Returns a single element with the given textas the value of theplaceholderattribute, defaulting to anexactmatch.inherited
- 
  queryByRole<E extends Element> (dynamic role, {bool exact = true, NormalizerFn normalizer([NormalizerOptions?])?, dynamic name, bool? selected, bool? checked, bool? pressed, bool? expanded, bool queryFallbacks = false, int? level}) → E? 
- 
  Returns a single element with the given rolevalue, defaulting to anexactmatch.inherited
- 
  queryByTestId<E extends Element?> (dynamic testId, {bool exact = true, NormalizerFn normalizer([NormalizerOptions?])?}) → E? 
- 
  Returns a single element with the given testIdvalue for thedata-test-idattribute, defaulting to anexactmatch.inherited
- 
  queryByText<E extends Element> (dynamic text, {bool exact = true, NormalizerFn normalizer([NormalizerOptions?])?, String? selector, dynamic ignore = 'script'}) → E? 
- 
  Returns a single element with the given textcontent, defaulting to anexactmatch.inherited
- 
  queryByTitle<E extends Element> (dynamic title, {bool exact = true, NormalizerFn normalizer([NormalizerOptions?])?}) → E? 
- 
  Returns a single element with the given titleas the value of thetitleattribute, defaulting to anexactmatch.inherited
- 
  toString() → String 
- 
  A string representation of this object.
  inherited
Operators
- 
  operator ==(Object other) → bool 
- 
  The equality operator.
  inherited