I'm doing some performance experiments and I keep getting this error with my Xcode UI Tests since no new UI Test statement is hit:
UITesting Failure - Failed to get snapshot within 15.0s
How can I change this 15.0s variable to something longer? Is there some configuration or setting that I can change?
I don't think this is possible. Apple has a system limit of 20 seconds for any app to start up, if it takes longer than that your app will be killed. Source
Because UI tests require bootstrapping your app, Apple has given itself ~5 seconds to perform all of it's setup as well. So essentially you have a 15 second limit to launch your app.
Because it's not possible to override the system's 20 second limit, it's also not going to be possible to override XCTest's 15 second limit.