xcode ui testing Recoding fails to generate code
I created a new iOS SwiftUI app and added following ContenView struct ContentView: View { var body: some View { VStack { Text("Hello, world!") .padding() Button("Press Me", action: { return print("button pressed") }) } } } I tried to add…