FlutterDriverAppDriverAdapter class 
 
    
    
    
  
    
  
    
  
    Methods
    
        - 
  dispose()
    → void
  
  
- 
  
  override 
- 
  enterText(SerializableFinder finder, String text, {Duration? timeout = const Duration(seconds: 30)})
    → Future<void>
  
  
- 
  
  override 
- 
  findBy(dynamic data, FindType type)
    → SerializableFinder
  
  
- 
  Returns the correct finder type instance
datacan beString,Keyor aTypefindTypedenotes the type of finder returnedoverride 
- 
  findByAncestor(SerializableFinder of, SerializableFinder matching, {bool matchRoot = false, bool firstMatchOnly = false})
    → SerializableFinder
  
  
- 
  
  override 
- 
  findByDescendant(SerializableFinder of, SerializableFinder matching, {bool matchRoot = false, bool firstMatchOnly = false})
    → SerializableFinder
  
  
- 
  Finds widgets that are descendants of the ofparameter and that match thematchingparameter.override 
- 
  getText(SerializableFinder finder, {Duration? timeout = const Duration(seconds: 30)})
    → Future<String?>
  
  
- 
  
  override 
- 
  isAbsent(SerializableFinder finder, {Duration? timeout = const Duration(seconds: 1)})
    → Future<bool>
  
  
- 
  
  override 
- 
  isPresent(SerializableFinder finder, {Duration? timeout = const Duration(seconds: 1)})
    → Future<bool>
  
  
- 
  
  override 
- 
  longPress(SerializableFinder finder, {Duration? pressDuration = const Duration(milliseconds: 500), Duration? timeout = const Duration(seconds: 30)})
    → Future<void>
  
  
- 
  
  override 
- 
  noSuchMethod(Invocation invocation)
    → dynamic
  
  
- 
  Invoked when a nonexistent method or property is accessed.
  inherited 
- 
  pageBack()
    → Future<void>
  
  
- 
  
  override 
- 
  screenshot()
    → Future<List<int>>
  
  
- 
  
  override 
- 
  scroll(SerializableFinder finder, {double? dx, double? dy, Duration? duration = const Duration(milliseconds: 200), Duration? timeout = const Duration(seconds: 30)})
    → Future<void>
  
  
- 
  Scrolls a descendant scrollable widget by the give parameters
  override 
- 
  scrollIntoView(SerializableFinder finder, {Duration? timeout = const Duration(seconds: 30)})
    → Future<void>
  
  
- 
  
  override 
- 
  scrollUntilVisible(SerializableFinder item, {SerializableFinder? scrollable, double? dx, double? dy, Duration? timeout = const Duration(seconds: 30)})
    → Future<void>
  
  
- 
  Repeatedly scrolls a Scrollable by delta until finder is visible.
Between each scroll, wait for duration time for settling.
If scrollable is null, this will find a Scrollable.
  override 
- 
  setNativeDriver(FlutterDriver driver)
    → void
  
  
- 
  
  inherited 
- 
  tap(SerializableFinder finder, {Duration? timeout = const Duration(seconds: 30)})
    → Future<void>
  
  
- 
  
  override 
- 
  toString()
    → String
  
  
- 
  A string representation of this object.
  inherited 
- 
  waitForAppToSettle({Duration? duration = const Duration(milliseconds: 100), Duration? timeout = const Duration(seconds: 30)})
    → Future<int>
  
  
- 
  
  override 
- 
  waitUntil(Future<bool> condition(), {Duration? timeout = const Duration(seconds: 10), Duration? pollInterval = const Duration(milliseconds: 500)})
    → Future<void>
  
  
- 
  Will wait until the give condition returns truepolling everypollInterval. Ifconditionhas not returned true
within the giventimeoutthis will cause the returned future to complete with a TimeoutException.inherited 
- 
  widget<T extends dynamic>(SerializableFinder finder, [ExpectedWidgetResultType expectResultType = ExpectedWidgetResultType.first])
    → Future<T>
  
  
- 
  
  override