File tree 3 files changed +6
-4
lines changed
3 files changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ import 'package:package_info_plus/package_info_plus.dart';
10
10
const MAX_TEST_DURATION_SECS = 24 * 60 * 60 ;
11
11
// Need a better way to fetch this for automated release, this needs to be updated along with version bump
12
12
// Can stay for now as it is not a breaking change
13
- const serverVersion = '0.0.23 ' ;
13
+ const serverVersion = '0.0.24 ' ;
14
14
15
15
void initializeTest ({Widget ? app, Function ? callback}) async {
16
16
IntegrationTestWidgetsFlutterBinding binding =
Original file line number Diff line number Diff line change @@ -163,8 +163,8 @@ class ElementHelper {
163
163
}
164
164
165
165
static Future <String > getText (FlutterElement element) async {
166
- String getElementTextRecursively (Element element, {Set <Element >? visited}) {
167
- visited ?? = < Element > {};
166
+ String getElementTextRecursively (dynamic element, {Set <dynamic >? visited}) {
167
+ visited ?? = < dynamic > {};
168
168
169
169
if (visited.contains (element)) {
170
170
return '' ;
@@ -185,6 +185,8 @@ class ElementHelper {
185
185
buffer.write (widget.controller.text);
186
186
} else if (widget is TextField ) {
187
187
buffer.write (widget.controller? .value.text);
188
+ } else if (widget is ButtonStyleButton ) {
189
+ buffer.write (getElementTextRecursively (widget.child, visited: visited));
188
190
}
189
191
190
192
if (element is RenderObjectElement ) {
Original file line number Diff line number Diff line change 1
1
name : appium_flutter_server
2
2
description : " Appium Flutter server using Integration Test package for testing Flutter apps with Appium"
3
- version : 0.0.23
3
+ version : 0.0.24
4
4
homepage : " https://github.com/AppiumTestDistribution/appium-flutter-server"
5
5
6
6
environment :
You can’t perform that action at this time.
0 commit comments