autool/utils_ios/go_ios/__init__.py
2026-06-17 19:44:18 +08:00

25 lines
457 B
Python

"""
go_ios Package
Provides Python utilities for interacting with the go_ios command line tool.
go_ios is used for running iOS xctest bundles like Fastbot and WebDriverAgent.
"""
from .go_ios_runner import (
get_ios_executable,
run_xctest,
start_fastbot,
start_wda,
stop_process,
GoIOSRunner,
)
__all__ = [
'get_ios_executable',
'run_xctest',
'start_fastbot',
'start_wda',
'stop_process',
'GoIOSRunner',
]