This content has been marked as final.
Show 4 replies
-
Re: xcode 11 beta 6 or 7 - XCUIApplication can't find elements that were previously found in older Xcodes
cxiong Aug 29, 2019 11:09 AM (in response to jreyesv)debugDescription issue happened since beta4 , this could be related with modal changes on Xcode 11.
Not sure our existing app need updated or this issue comes from XCUITEST framework .
-
Re: xcode 11 beta 6 or 7 - XCUIApplication can't find elements that were previously found in older Xcodes
jreyesv Sep 1, 2019 6:03 PM (in response to cxiong)Yes we are not sure either, we could update the code of the UI tests to look for the element on the new categories only for iOS 13, but that means for previous versions of iOS the code will be different, wouldn't like to have `
if #available(iOS 13.0, *)` everywhere on our code
-
-
Re: xcode 11 beta 6 or 7 - XCUIApplication can't find elements that were previously found in older Xcodes
glaurent Sep 13, 2019 9:55 AM (in response to jreyesv)We're experiencing this too, in Xcode 11 GM, labels with tap gesture recognizers have to be accessed through `app.buttons["some static text"]` instead of `app.staticTexts["some static text"]`.
-
Re: xcode 11 beta 6 or 7 - XCUIApplication can't find elements that were previously found in older Xcodes
Schweszter Dec 3, 2019 5:46 AM (in response to jreyesv)I have the same issue. Any solution rather than rename everything?