-
-
Notifications
You must be signed in to change notification settings - Fork 420
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Add a script to open WDA in Xcode (#1457)
- Loading branch information
1 parent
401092f
commit e2255fe
Showing
3 changed files
with
19 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
const path = require('path'); | ||
const { exec } = require('teen_process'); | ||
const log = require('fancy-log'); | ||
const { BOOTSTRAP_PATH } = require('appium-webdriveragent'); | ||
const XCODEPROJ_NAME = 'WebDriverAgent.xcodeproj'; | ||
|
||
|
||
async function openWda () { | ||
const dstPath = path.resolve(BOOTSTRAP_PATH, XCODEPROJ_NAME); | ||
log.info(`Opening '${dstPath}'`); | ||
await exec('open', [dstPath]); | ||
} | ||
|
||
(async () => await openWda())(); |