selenium
This commit is contained in:
45
node_modules/chrome/index.js
generated
vendored
Normal file
45
node_modules/chrome/index.js
generated
vendored
Normal file
@@ -0,0 +1,45 @@
|
||||
#!/usr/bin/env node
|
||||
|
||||
var path = require('path')
|
||||
var exeq = require('exeq')
|
||||
var common = require('./common')
|
||||
|
||||
var chrome = {
|
||||
getCommand: function() {
|
||||
return this.path + '/Contents/MacOS/Google Chrome'
|
||||
},
|
||||
isExist: function(cb) {
|
||||
var that = this
|
||||
if (this.version) {
|
||||
cb(true)
|
||||
return
|
||||
}
|
||||
common.find('com.google.Chrome', function(err, p) {
|
||||
if (err) {
|
||||
cb(false)
|
||||
return
|
||||
}
|
||||
that.path = p
|
||||
var pl = path.join(p, 'Contents', 'Info.plist')
|
||||
common.parseVersionByPlist(pl, 'KSVersion', function(v) {
|
||||
if (!v) {
|
||||
cb(false)
|
||||
return
|
||||
}
|
||||
that.version = v
|
||||
cb(true)
|
||||
})
|
||||
})
|
||||
},
|
||||
fixWhitespace: function(str) {
|
||||
return /\s/g.test(str) ? '"' + str + '"' : str
|
||||
}
|
||||
}
|
||||
|
||||
chrome.isExist(function() {
|
||||
exeq([chrome.getCommand()].concat(process.argv.slice(2)).map(chrome.fixWhitespace).join(' '))
|
||||
.catch(function(err) {
|
||||
console.error('Failed to open Google Chrome as intended', err)
|
||||
process.exit(err.code || 13)
|
||||
})
|
||||
})
|
||||
Reference in New Issue
Block a user