We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e2d24f5 commit b96c767Copy full SHA for b96c767
packages/webview_flutter/webview_flutter_android/example/integration_test/webview_flutter_test.dart
@@ -535,11 +535,11 @@ Future<void> main() async {
535
// Makes sure we get the correct event that indicates the video is actually playing.
536
await videoPlaying.future;
537
538
- dynamic fullScreen =
+ Object fullScreen =
539
await controller.runJavaScriptReturningResult('isFullScreen();');
540
541
if (fullScreen is String) {
542
- fullScreen = fullScreen == 'isFullScreen();';
+ fullScreen = fullScreen == 'true';
543
}
544
545
expect(fullScreen, false);
0 commit comments