ByCheckTag class

Finder annotations. See CssFinder for usage details. Finds elements by the page object's @CheckTag contents.

Example, given:

  @CheckTag('example-tag')
  @PageObject()
  abstract class ExampleTagPO { ... }

Then:

  @ByCheckTag()
  ExampleTagPO get exampleTag;

is equivalent to:

  @ByTagName('example-tag')
  ExampleTagPO get exampleTag;
Implemented types

Constructors

ByCheckTag()
const

Properties

hashCode int
The hash code for this object.
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited