Aditya Atul Tirodkar
Aditya Atul Tirodkar
@xavierjurado we do not plan to add it or support EarlGrey 1.0 going forward. If you sent a PR, we could take a look at it, but it won't be...
EarlGrey 2.0 (in the `earlgrey2` branch has iOS 13 support). Please look at migrating your tests to use it.
Hey @OuterCloud how many tests do you have? You can utilize the eDO macros in EarlGrey 2.0 to do white-box calls in a UI test as well. If you want...
Send me your email and I'll add you there. You can use OCMock by stubbing it with eDO.
I think there should be a crash log related to your application. If you can't find it - look at DiagnosticsDir/.
Can you try using GREY_REMOTE_CLASS_IN_APP() ? On Fri, Feb 21, 2020 at 1:33 PM Ethan Wolfe wrote: > I've setup EG2 using CocoaPods, and ensured the base functionality works. >...
Look at https://github.com/google/EarlGrey/blob/earlgrey2/Tests/Functional/Sources/Swift/SwiftTests.swift#L234 . On Mon, Feb 24, 2020 at 9:38 AM Ethan Wolfe wrote: > @tirodkar Am I able to call that method > from Swift? I'm unable to...
That seems like an actual bug in the application. https://stackoverflow.com/questions/46355872/warning-from-ios-do-not-add-subviews-directly-to-the-visual-effect-view-itself
Can you update EarlGrey.m's openDeepLink method with this and check? ``` #if defined(__IPHONE_11_0) - (BOOL)openDeepLinkURL:(NSString *)URL withApplication:(XCUIApplication *)application error:(NSError **)error { #if TARGET_OS_IOS XCUIApplication *safariApp = [[XCUIApplication alloc] initWithBundleIdentifier:@"com.apple.mobilesafari"]; [safariApp...
Can you use a scroll action with a scroll amount and see if that works for you? You need a more controlled action here.