Unverified Commit cbab555d authored by Kate Lovett's avatar Kate Lovett Committed by GitHub

Remove deprecated FlutterDriver.enableAccessibility (#143979)

https://github.com/flutter/flutter/issues/143956
parent a8861fb8
...@@ -179,15 +179,6 @@ abstract class FlutterDriver { ...@@ -179,15 +179,6 @@ abstract class FlutterDriver {
/// Getter of webDriver. /// Getter of webDriver.
async_io.WebDriver get webDriver => throw UnimplementedError(); async_io.WebDriver get webDriver => throw UnimplementedError();
/// Enables accessibility feature.
@Deprecated(
'Call setSemantics(true) instead. '
'This feature was deprecated after v2.3.0-12.1.pre.'
)
Future<void> enableAccessibility() async {
await setSemantics(true);
}
/// Sends [command] to the Flutter Driver extensions. /// Sends [command] to the Flutter Driver extensions.
/// This must be implemented by subclass. /// This must be implemented by subclass.
/// ///
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment