## SafariLauncher 安裝說明
在 iOS 9.3 及以下的真機上使用 Instruments 運行移動端網頁測試,需要引入一個第三方 app [SafariLauncher](https://github.com/snevesbarros/SafariLauncher)。
這是因為用 Instruments 不能在設備上啟動 Safari。而 `SafariLauncher` 啟動后會啟動 Safari。簡單吧!
在一些配置下,Appium 可以在需要時自動構建、簽名并且安裝 `SafariLauncher`,不需要額外做什么。如果不行,很可能是因為新版本的 [Xcode](https://developer.apple.com/xcode/),需要完成以下配置才能成功在真機上運行 Safari 測試。
### 自動配置 SafariLauncher
只要新建一個用于發布 `SafariLauncher` 應用的 **provisioning profile** 就可以自動配置 `SafariLauncher`。特殊之處是需要一個通配符證書,而免費的蘋果開發者賬號不能創建通配符證書。所以免費賬號需要用下面的手動配置方法。
創建 launcher 使用的 profile 需要進入 **Apple Developers Member Center** 然后:
* **步驟 1:** 創建 **新的 App Id**,選擇通配符 App ID 選項并填寫為"*"。
* **步驟 2:** 創建 **新的 Development Profile** 關聯步驟 1 創建的 App Id。
* **步驟 3:** 選擇你的 **certificate(s) and device(s)** 然后點擊下一步。
* **步驟 4:** 填寫 profile 名稱然后 **generate the profile**。
* **步驟 5:** 下載 profile 用編輯器打開。
* **步驟 6:** 搜索 **UUID**,字符串是你的 **identity code**。
現在只需在 desired capabilities 中填入你的 UDID 和 device name:
```js
{
udid: '...',
deviceName: '...',
platformName: 'iOS',
platformVersion: '9.3',
browserName: 'Safari'
}
```
### 手動配置 SafariLauncher
**注意:** 這個過程假定你是 [Xcode](https://developer.apple.com/xcode/) 7.3 或 7.3.1。
可以使用 [appium-ios-driver](https://github.com/appium/appium-ios-driver) 包含的 [SafariLauncher](https://github.com/snevesbarros/SafariLauncher) 版本,但是每次升級 Appium 后都必須重新做一遍。
先從 [GitHub](https://github.com/) 克隆 `SafariLauncher` 得到本地拷貝:
```bash
git clone https://github.com/snevesbarros/SafariLauncher.git
```
在本地有了 `SafariLauncher` 應用的源碼后用 [Xcode](https://developer.apple.com/xcode/) 打開 `SafariLauncher` 項目

在 `SafariLauncher` target 面板會看到應用需要 provisioning profile 的錯誤提示。

修復錯誤需要先輸入應用的 "Bundle Identifier",默認情況 Appium 使用 `com.bytearc.SafariLauncher`。如果用這個不能構建就換一個并記下來。然后選擇 "Team",接著允許創建 provisioning profile。

最后選擇連上電腦的設備作為目標

執行 "Run",構建后安裝 app 到你的設備上

現在 `SafariLauncher` 可以在你的設備上工作了。app 只有一個簡單的頁面,點擊按鈕會啟動 `Safari`

最后一步只有在你沒有使用默認 bundle identifier(`com.bytearc.SafariLauncher`) 的情況下才需要。Appium 在創建會話時需要通過 `bundleId` desired capability 知道你使用的 bundle identifier:
```js
{
udid: '...',
deviceName: '...',
platformName: 'iOS',
platformVersion: '9.3',
browserName: 'Safari',
bundleId: 'com.imurchie.SafariLauncher'
}
```
- 關于TesterHome和MTSC
- 關于Appium
- 簡介
- Appium 客戶端
- 入門指南
- 已支持的平臺
- API 文檔
- Appium驅動
- XCUITest (iOS)
- XCUITest Real Devices (iOS)
- UIAutomation (iOS)
- UIAutomation Safari Launcher (iOS)
- UIAutomator (Android)
- UIAutomator2 (Android)
- Espresso (Android)
- Windows
- Mac
- Appium命令
- Status
- Execute Mobile Command
- Session
- Create
- End
- Get Session Capabilities
- Go Back
- Screenshot
- Source
- Timeouts
- Timeouts
- Implicit Wait
- Async Script
- Orientation
- Get Orientation
- Set Orientation
- Geolocation
- Get Geolocation
- Set Geolocation
- Logs
- Get Log Types
- Get Logs
- Events
- Log event
- Get events
- Settings
- Update Settings
- Get Device Settings
- Settings
- Update Settings
- Get Device Settings
- Execute Driver Script
- Device
- Activity
- Start Activity
- Current Activity
- Current Package
- App
- Install App
- Is App Installed
- Launch App
- Background App
- Close App
- Reset App
- Remove App
- Activate App
- Terminate App
- Get App State
- Get App Strings
- End Test Coverage
- Clipboard
- Get Clipboard
- Set Clipboard
- Emulator
- Power AC
- Power Capacity
- Files
- Push File
- Pull File
- Pull Folder
- Interactions
- Shake
- Lock
- Unlock
- Is Locked
- Rotate
- Keys
- Press keycode
- Long press keycode
- Hide Keyboard
- Is Keyboard Shown
- Network
- Toggle Airplane Mode
- Toggle Data
- Toggle WiFi
- Toggle Location Services
- Send SMS
- GSM Call
- GSM Signal
- GSM Voice
- Network Speed
- Performance Data
- Get Performance Data
- Performance Data Types
- Screen Recording
- Start Screen Recording
- Stop Screen Recording
- Simulator
- Perform Touch ID
- Toggle Touch ID Enrollment
- System
- Open Notifications
- System Bars
- System Time
- Display density
- Authentication
- Finger Print
- Element
- Find Element
- Find Elements
- Actions
- Click
- Send Keys
- Clear
- Attributes
- Text
- Name
- Attribute
- Selected
- Enabled
- Displayed
- Location
- Size
- Rect
- CSS Property
- Location in View
- Other
- Submit
- Active Element
- Equals Element
- Context
- Get Context
- Get All Contexts
- Set Context
- Interactions
- Mouse
- Move To
- Click
- Double Click
- Button Down
- Button Up
- Touch
- Single Tap
- Double Tap
- Move
- Touch Down
- Touch Up
- Long Press
- Scroll
- Flick
- Multi Touch Perform
- Touch Perform
- W3C Actions
- Web
- Window
- Set Window
- Close Window
- Get Handle
- Get Handles
- Get Title
- Get Window Size
- Set Window Size
- Get Window Position
- Set Window Position
- Maximize Window
- Navigation
- Go to URL
- Get URL
- Back
- Forward
- Refresh
- Storage
- Get All Cookies
- Set Cookie
- Delete Cookie
- Delete All Cookies
- Frame
- Switch to Frame
- Switch to Parent Frame
- Execute Async
- Execute
- 編寫 & 運行Appium腳本
- Running Tests
- Desired Capabilities
- The --default-capabilities flag
- Finding Elements
- Touch Actions
- CLI Arguments
- Server Security
- Web/Web Views
- Mobile Web Testing
- Automating Hybrid Apps
- Using ios-webkit-debug-proxy
- Using Chromedriver
- Image Comparison
- iOS
- Low-Level Insights on iOS Input Events
- XCUITest Mobile Gestures
- XCUITest Mobile App Management
- iOS Pasteboard Guide
- iOS Predicate Guide
- iOS Touch ID Guide
- iOS Install Certificate
- tvOS support
- Pushing/Pulling files
- Audio Capture
- Android
- Low-Level Insights on Android Input Events
- UiSelector Guide
- Espresso Datamatcher Guide
- Android Code Coverage Guide
- Activities Startup Troubleshooting Guide
- How To Execute Shell Commands On The Remote Device
- Android Device Screen Streaming
- How To Emulate IME Actions Generation
- How To Test Android App Bundle
- Other
- Reset Strategies
- Network Connection Guide
- Using Unicode with Appium
- Troubleshooting
- Tutorial
- Swipe Tutorial
- Screen
- Element
- Partial screen
- Simple
- Multiple scroll views
- Add scroll layout
- Tricks and Tips
- Screen
- Element
- Element search
- Fast
- Slow
- Guide
- 進階概念
- 定位圖像中的元素
- 使用定位元素的插件
- 遷移到 XCUITest
- 在 Appium 中使用 Selenium Grid
- Appium Logs Filtering
- 跨域 iframes
- 使用自定義 WDA 服務器
- 使用不同版本的 Xcode 運行
- The Event Timings API
- 并行測試的設置
- The Settings API
- Memory Collection
- 向Appium項目做貢獻
- 從源代碼運行 Appium
- 開發者概述
- 標準開發命令
- Appium 風格指南
- 如何編寫文檔
- Appium 包結構
- 鳴謝