Shane
Shane
This is a major bug - any progress in resolving this?
We > @tirodkar Ok, so I tried > > ``` > let targetApp = GREYRemoteClassInApp(classVal: UIApplication.self).shared > targetApp.setStatusBarOrientation(UIInterfaceOrientation.landscapeLeft, animated: false) > ``` > > And got the following error: >...
We are seeing this issue as well when both EarlGrey 1 and EarlGrey 2.2.0 pods (EarlGreyTest and EarlGreyApp) exist in the Podfile. Is this intended?
Did you launch your application in your test? `XCUIApplication().launch()`
Thank you, I found this example using GREYRemoteClassInApp() - https://github.com/google/EarlGrey/blob/earlgrey2/Tests/Functional/Sources/Swift/SwiftTests.swift#L236 Just to make sure, the steps detailed here are only for XcodeProject setup and does not work with Cocoapods correct?...
Hi @tirodkar, I am facing `Undefined symbol: _OBJC_CLASS_$_{CustomAppSideObject}` when using GREYRemoteClassInApp(), e.g. self.customObject = GREYRemoteClassInApp(classVal: CustomAppSideObject.self).sharedInstance() in a separate class that gets called by the test class. Example: ``` //...