A macOS library for managing, booting and interacting with multiple iOS Simulators simultaneously.
FBSimulatorControl
is now intended to be an implementation detail of idb
, but can still be used as a standalone Framework. We strongly encourage using idb
directly since it is a "batteries included" command line interface that exposes all FBSimulatorControl
functionality.
- Supports 'Multisim' for iOS: Booting of multiple Simulators on the same host OS.
- Boots iOS Simulators across a range of Xcode and iOS Versions.
- Runs independently of Xcode and
xcodebuild
without requiring embedding in a Graphical User Interface. Uses whatever Xcode toolchain is defined byxcode-select
. - Exposes a broad range of functionality that is available in
simctl
and Xcode. - Implements additional functionality not available in
simctl
including hardware encoded video streaming, file manipulation, accessibility fetching, direct input event injection and more. - An 'Event Bus' that exposes the details of a Simulator's lifecycle including Applications, Agents & the Simulator itself.
NSNotification
s interface for the 'Event Bus'.- No external dependencies.
- A Pure Objective-C Framework, so as not to force a Swift-Version dependency.
- An API designed to be easily integrated into other Frameworks or Applications, including with Swift clients.
The original use-case for FBSimulatorControl
was to boot multiple Simulators on the same host, before this was officially supported in Xcode.
FBSimulatorControl
works by linking with the private CoreSimulator
and SimulatorKit
frameworks that are installed as part of Xcode. Doing this allows FBSimulatorControl
to talk directly to the same APIs that Xcode and simctl
use. FBSimulatorControl
also adds features that aren't present in Xcode or the iOS Simulator, such as accessibility fetching.
The homebrew installation is derived from the build.sh
script in this directory. You can build FBSimulatorControl
with the following: build.sh framework build
The FBSimulatorControl.xcodeproj
will build the FBSimulatorControl.framework
and the FBSimulatorControlTests.xctest
bundles without any additional dependencies. The Project File is checked into the repo and the Framework can be build from this project.
Once you build the FBSimulatorControl.framework
, it can be linked like any other 3rd-party Framework for your project:
- Add
FBSimulatorControl.framework
to the Target's 'Link Binary With Libraries' build phase. - Ensure that
FBSimulatorControl
is copied into the Target's bundle (if your Target is an Application or Framework) or a path relative to the Executable if your project does not have a bundle.
In order to support different Xcode versions and system environments, FBSimulatorControl
weakly links against Xcode's Private Frameworks and loads these Frameworks when they are needed. FBSimulatorControl
will link against the version of Xcode that you have set with xcode-select
. It is not recommended to run against multiple versions of Xcode on the same host as CoreSimulator
has user-level daemons that cannot run against multiple versions of Xcode concurrently.
Since the Frameworks upon which FBSimulatorControl
depends are loaded lazily, they must be loaded before the Framework is functional. However, you do not have to do this manually as any of the FBSimulatorControl
functionality that has this dependency will load these Private Frameworks when they are used for the first time.
The tests should provide you with some basic guidance for using the API. FBSimulatorControl
has an umbrella header that can be imported to give access to the entire API.
For a high level overview:
FBSimulatorControl
is the Principal Class. It is the first object that you should create with+[FBSimulatorControl withConfiguration:error:]
. It creates aFBSimulatorSet
upon creation.FBSimulatorSet
wrapsSimDeviceSet
and provides a resiliant CRUD API for Deleting, Creating and Erasing Simulators.FBSimulator
is a reference type that represents an individual Simulator. It has a number of convenience methods for accessing information about a Simulator. Many of the possible actions you can perform on a Simulator are present on instances of this class.FBSimulatorDiagnostics
is a facade around available diagnostics for a Simulator. It fetches static logs such as the System Log on-demand and receives new logs from components such asFBFramebufferVideo
.- Configuration objects:
FBApplicationLaunchConfiguration
,FBAgentLaunchConfiguration
,FBSimulatorApplication
,FBSimulatorControlConfiguration
,FBSimulatorConfiguration
&FBSimulatorBootConfiguration
.
Since FBSimulatorControl
is built as a Framework Module, it's easy to make Swift Scripts that use the Framework:
To launch Safari on an iPhone 6, you can run the following:
#!/usr/bin/env xcrun swift -F /usr/local/Frameworks
// The -F Argument should be the directory in which the FBSimulatorControl.framework is located.
// Import the FBSimulatorControl Framework
import FBSimulatorControl
// Create the FBSimulatorControl Instance.
let options = FBSimulatorManagementOptions()
let config = FBSimulatorControlConfiguration(deviceSetPath: nil, options: options)
let logger = FBControlCoreGlobalConfiguration.defaultLogger()
let control = try FBSimulatorControl.withConfiguration(config, logger: logger)
// Get an existing iPhone 6 from the Simulator Pool.
let simulator = try control.pool.allocateSimulator(
with: FBSimulatorConfiguration.iPhone6(),
options: FBSimulatorAllocationOptions.reuse
)
print("Using \(simulator)")
// If it is booted, keep it booted, otherwise boot it.
if (simulator.state != .booted) {
print("Booting Simulator \(simulator)")
try simulator.boot()
}
// List the Installed Apps and get the first installed app
let applications = simulator.installedApplications()
let application = applications.first!
// Launch the first installed Application
let appLaunch = FBApplicationLaunchConfiguration(
application: application,
arguments: [],
environment: [:],
output: FBProcessOutputConfiguration.outputToDevNull()
)
print("Launching \(application)")
try simulator.launchApplication(appLaunch)
FBSimulatorControl
currently has two ways of launching Simulators that have tradeoffs for different use cases:
The CoreSimulator
Framework that is used by the Simulator.app
as well as Playgrounds & Interface Builder has long had the concept of custom 'Device Sets' which contain created Simulators. Multiple Device Sets can be used on the same host and are an effective way of ensuring that multiple processes using CoreSimulator
don't collide into each other. 'Device Sets' are also beneficial for an automation use-case, as using a different set other than the 'Default' will ensure that these Simulators aren't polluted.
CoreSimulator
itself is also capable of running multiple Simulators on the same host concurrently. You can see this for yourself by using the simctl
commandline. Booting Simulators this way can be of somewhat limited utility without the output of the screen. FBSimulatorControl
solves this problem in two different ways:
Simulator.app
is the macOS Application bundle with Xcode that you are probably familiar with for viewing and interacting with a Simulator. This Mac Application is the part of the Xcode Toolchain that you will be used to.
FBSimulatorControl
can launch the Application Excutable directly, thereby allowing specific Simulators to be booted by UDID and Device Set. This can be done by overriding the Simulator.app
s NSUserDefaults
by passing them as Arguments to the Application Process. Once the Simulator has booted, it can be interacted with via CoreSimulator
with commands such as installing Apps and launch executables.
However, this mode of operation does limit the amount that FBSimulatorControl
can manipulate the Simulator, once the Simulator.app
process has been launched. In particular it's not possible to execute custom code inside the Simulator Application process, which means that it's not possible to get video frames that the booted simulator passes back to the Simulator.app
process.
FBSimulatorControl
also supports 'Direct Launching'. This means that the Simulator is booted from the FBSimulatorControl
Framework. This gives increasing control over the operation of the Simulator, including fetching frames from the Framebuffer. This means that pixel-perfect videos and screenshots can be constructed from the Framebuffer. In addition, FBSimulatorControl
can communicate to the SimulatorBridge
process running on the Simulator over XPC.
Direct Launching does not currently support manipulation of the UI within the Simulator, so is much better suited to a use-case where the UI is manipulated by other means.
See the CONTRIBUTING file for how to help out. There's plenty to work on the issues!
- SimulatorController: GUI interface written in Swift
- FBSimulatorClient: Simulator interface using REST requests