Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
97857fc
feat(appium): add Unity SDK support
fadi-george Apr 28, 2026
c0b8981
feat(appium): add Unity build caching
fadi-george Apr 28, 2026
a7acbaf
fix(appium): improve Unity build failure hints
fadi-george Apr 28, 2026
628b6b0
fix(appium): extend IAM retry tap to native iOS
fadi-george May 2, 2026
e5c3ce9
fix(appium): wait for scroll view after IAM close
fadi-george May 2, 2026
3deb629
refactor(appium): remove unused isWebViewVisible import
fadi-george May 2, 2026
48a1ec6
refactor(appium): extract openModal helper
fadi-george May 2, 2026
912edfe
refactor(appium): suppress first attempt log
fadi-george May 2, 2026
eabe4d3
refactor(appium): simplify openModal, drop Unity retry
fadi-george May 2, 2026
2b4db67
chore(appium): bump deps, pin vite-plus to 0.1.20
fadi-george May 11, 2026
79e1126
chore(appium): bump Unity to 6000.4.6f1, deduplicate xcodebuild
fadi-george May 12, 2026
93433fc
fix(appium): avoid accidental taps on Unity iOS
fadi-george May 12, 2026
df46b67
refactor(appium): add waitForTestIdNotDisplayed helper
fadi-george May 12, 2026
623c375
refactor(appium): rename waitForTestIdNotDisplayed to waitForDisappear
fadi-george May 12, 2026
bc118f4
fix(appium): improve Unity modal confirmation
fadi-george May 12, 2026
21dd08b
chore(appium): include *.java in Unity hash paths
fadi-george May 12, 2026
a49343e
refactor(appium): extract isUnitySDK constant
fadi-george May 12, 2026
0cd2518
fix(appium): rename pod stamp var to avoid shadowing
fadi-george May 12, 2026
511eb02
docs(appium): clarify openModal/tapIamTrigger scope comments
fadi-george May 12, 2026
adccbbb
fix(appium): use ReleaseForRunning config for Unity iOS sim
fadi-george May 13, 2026
5cfe9ee
fix(appium): await chainable before wrapping in Proxy
fadi-george May 13, 2026
855d20e
refactor(appium): drop redundant waitForDisplayed in 09_trigger
fadi-george May 13, 2026
543f6b0
docs(appium): shorten byTestId comment
fadi-george May 13, 2026
9640b37
fix(appium): normalize --spec when bare basename has .ts suffix
fadi-george May 13, 2026
9b1c3a1
fix(appium): short-circuit scrollExtraIfNeeded for tall elements
fadi-george May 13, 2026
b1b616e
refactor(appium): rename openModal firstTryMs to timeoutMs
fadi-george May 13, 2026
a2260f8
fix(appium): scope stale WDA cleanup to port 8100 holder
fadi-george May 13, 2026
92ecfa2
docs(appium): correct Unity scope on swipeMainContent/scrollToEl comm…
fadi-george May 13, 2026
8b2999f
fix(appium): auto-detect Unity iOS simulator arch by host
fadi-george May 13, 2026
8faf451
refactor(appium): hoist simulator_arch before cache check
fadi-george May 13, 2026
b654d93
fix(appium): scope Unity iOS derived-data dir by arch
fadi-george May 13, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
336 changes: 171 additions & 165 deletions appium/bun.lock

Large diffs are not rendered by default.

26 changes: 13 additions & 13 deletions appium/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,22 +9,22 @@
"test:ios": "wdio run wdio.ios.conf.ts"
},
"devDependencies": {
"@types/node": "^25.6.0",
"@wdio/browserstack-service": "^9.27.0",
"@wdio/cli": "^9.27.0",
"@wdio/junit-reporter": "^9.27.0",
"@wdio/local-runner": "^9.27.0",
"@wdio/mocha-framework": "^9.27.0",
"@types/node": "^25.6.2",
"@wdio/browserstack-service": "^9.27.1",
"@wdio/cli": "^9.27.1",
"@wdio/junit-reporter": "^9.27.1",
"@wdio/local-runner": "^9.27.1",
"@wdio/mocha-framework": "^9.27.1",
"@wdio/shared-store-service": "^9.27.0",
"@wdio/spec-reporter": "^9.27.0",
"@wdio/spec-reporter": "^9.27.1",
"tsx": "^4.21.0",
"typescript": "^6.0.2",
"vite-plus": "latest",
"webdriverio": "^9.27.0"
"typescript": "^6.0.3",
"vite-plus": "0.1.20",
"webdriverio": "^9.27.1"
},
"overrides": {
"vite": "npm:@voidzero-dev/vite-plus-core@latest",
"vitest": "npm:@voidzero-dev/vite-plus-test@latest"
"vite": "npm:@voidzero-dev/vite-plus-core@0.1.20",
"vitest": "npm:@voidzero-dev/vite-plus-test@0.1.20"
},
"packageManager": "bun@1.3.12"
"packageManager": "bun@1.3.13"
}
Loading