## iOS 輸入事件的底層視角
### 什么是輸入事件?
iOS 使用事件這個概念來處理從不同輸入設備收到的信號。一個事件就是一個對象,由某個輸入設備的某個信號對應產生。
然后,這些對象被投遞到對應的內核子系統,經過處理之后,通知所有監聽的進程,比如,tap,點擊,滑動等。
這就意味著為了模擬外部設備生成的信號,比如觸摸屏幕,只需要按真實設備生成事件的順序,發送有相同屬性的事件對象,
### 讓我們模擬一個單點擊事件
該事件的API是蘋果的私有API之一,不開源也沒有任何文檔。XCTest 盡管如此,還是有可能通過XCTest沒有文檔的私有接口來生成事件。我們對[XCPointerEventPath](https://github.com/appium/WebDriverAgent/blob/master/PrivateHeaders/XCTest/XCPointerEventPath.h) 和 [XCSynthesizedEventRecord](https://github.com/appium/WebDriverAgent/blob/master/PrivateHeaders/XCTest/XCSynthesizedEventRecord.h) 接口特別感興趣。
這些接口允許我們創建輸入事件鏈,并提供給系統內核執行。
為了合成單機事件,我們必須:
- 創建一個 `XCPointerEventPath` 實例,然后初始化為`在初始點觸摸`。
- 使用 `liftUpAtOffset:` 方法,給每個實例添加一個 `liftUp` 事件,偏移量為:`0.125s`。
- 使用`addPointerEventPath:`方法,添加生成的事件對象給`XCSynthesizedEventRecord` 實例。
- 使用`XCSynthesizedEventRecord`的`synthesizeWithError:`方法來執行事件,并處理返回的錯誤信息。
對于這些 API,有如下限制:
- 每個 `XCPointerEventPath` 實例只能執行一個動作。舉個例子,如果想給一個實例添加兩個點擊事件,都會被忽略掉。
- 每個 `XCPointerEventPath` 實例都只能用特定的點擊類型來初始化,比如,touch, mouse (從 Xcode 10.2開始) 或者 keyboard (從 Xcode 10.2)
- 對一個已經存在的 `XCPointerEventPath` 實例,事件只能增加偏移量。
### 更加復雜的動作事件怎么辦?
不幸的是,這些接口是私有的,沒有任何文檔。
我們只能通過嘗試組合不同的輸入,才能搞清楚究竟有了什么效果。目前所知的是,在多個`XCPointerEventPath`實例之間疊加時間,會生成多點觸控事件,有多少事件實例,就有多少手指。
所以,為了生成二指滑動事件,我們需要提供如下事件:
- 創建兩個 `XCPointerEventPath` 實例, 然后初始化為`在初始點觸摸`。
- 使用`moveToPoint:`方法,給每個實例添加`moveToPoint`事件,偏移量為:`0.525s`。
- 使用 `liftUpAtOffset:` 方法,給每個實例添加一個 `liftUp` 事件,偏移量為:`0.525s`。
- 使用`addPointerEventPath:`方法,添加生成的事件對象給`XCSynthesizedEventRecord` 實例。
- 使用`XCSynthesizedEventRecord`的`synthesizeWithError:`方法來執行事件,并處理返回的錯誤信息。
### 拓展閱讀
不幸的是,該主題根本就沒有太多的信息(私有 API `ˉ\_(ツ)_/ˉ`). 可以參考如下的資料:
- https://github.com/appium/WebDriverAgent/tree/master/PrivateHeaders/XCTest
- https://github.com/appium/WebDriverAgent/blob/master/WebDriverAgentTests/IntegrationTests/FBW3CTouchActionsIntegrationTests.m
- https://github.com/appium/WebDriverAgent/blob/master/WebDriverAgentTests/IntegrationTests/FBW3CMultiTouchActionsIntegrationTests.m
- https://github.com/appium/WebDriverAgent/blob/master/WebDriverAgentLib/Utilities/FBW3CActionsSynthesizer.m
- 關于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 包結構
- 鳴謝