1

Is it possible to add UI tests for CarPlay using XCTest framework?

    func testExample() throws {
        let app = XCUIApplication()
        app.launch()
    }

This is the basic UI test that I have but it does not launch the extended display for CarPlay.

nishith Singh
  • 2,968
  • 1
  • 15
  • 25

1 Answers1

0

It is not possible yet to automate CarPlay-related tests. Though you still can open a CarPlay interface (by changing simulator settings), and then get the elements tree.

Roman Zakharov
  • 2,185
  • 8
  • 19