blob: d64063b47c3043d12e5de77783d3a784fa0d71fb [file] [log] [blame]
// Copyright 2014 The Flutter Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
import 'dart:async';
import 'package:flutter_driver/flutter_driver.dart';
import 'package:test/test.dart' hide TypeMatcher, isInstanceOf;
void main() {
group('basic stock view test', () {
late FlutterDriver driver;
setUpAll(() async {
driver = await FlutterDriver.connect();
});
tearDownAll(() async {
driver.close();
});
test('Stock list is shown', () async {
final SerializableFinder stockList = find.byValueKey('stock-list');
expect(stockList, isNotNull);
}, timeout: Timeout.none);
test('open AAPL stock', () async {
final SerializableFinder stockList = find.byValueKey('stock-list');
expect(stockList, isNotNull);
final SerializableFinder aaplStockRow = find.byValueKey('AAPL');
await driver.scrollUntilVisible(stockList, aaplStockRow);
await driver.tap(aaplStockRow);
await Future<void>.delayed(const Duration(milliseconds: 500));
final SerializableFinder stockOption =
find.byValueKey('AAPL_symbol_name');
final String symbol = await driver.getText(stockOption);
expect(symbol, 'AAPL');
},
skip: 'Needs to be fixed on Fuchsia.', // https://github.com/flutter/flutter/issues/87069
timeout: Timeout.none);
});
}