This repository was archived by the owner on Feb 22, 2023. It is now read-only.
File tree 1 file changed +4
-4
lines changed
packages/google_maps_flutter/google_maps_flutter_ios/example/ios/RunnerUITests 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -18,6 +18,8 @@ - (void)setUp {
18
18
self.app = [[XCUIApplication alloc ] init ];
19
19
[self .app launch ];
20
20
21
+ // The location permission interception is currently not working.
22
+ // See: https://github.com/flutter/flutter/issues/93325.
21
23
[self
22
24
addUIInterruptionMonitorWithDescription: @" Permission popups"
23
25
handler: ^BOOL (XCUIElement *_Nonnull interruptingElement) {
@@ -43,17 +45,15 @@ - (void)setUp {
43
45
}];
44
46
}
45
47
46
- - (void )testUserInterface {
48
+ // Temporarily disabled due to https://github.com/flutter/flutter/issues/93325
49
+ - (void )skip_testUserInterface {
47
50
XCUIApplication *app = self.app ;
48
51
XCUIElement *userInteface = app.staticTexts [@" User interface" ];
49
52
if (![userInteface waitForExistenceWithTimeout: 30.0 ]) {
50
53
os_log_error (OS_LOG_DEFAULT, " %@" , app.debugDescription );
51
54
XCTFail (@" Failed due to not able to find User interface" );
52
55
}
53
56
[userInteface tap ];
54
- // There is a known bug where the permission popups interruption won't get fired until a tap
55
- // happened in the app. We expect a permission popup so we do a tap here.
56
- [app tap ];
57
57
XCUIElement *platformView = app.otherElements [@" platform_view[0]" ];
58
58
if (![platformView waitForExistenceWithTimeout: 30.0 ]) {
59
59
os_log_error (OS_LOG_DEFAULT, " %@" , app.debugDescription );
You can’t perform that action at this time.
0 commit comments