- 授权协议: MIT
- 开发语言: JavaScript
- 操作系统: 跨平台
- 软件首页: https://github.com/substack/browser-launcher
- 软件文档: https://github.com/substack/browser-launcher/blob/master/README.markdown
- 官方下载: https://github.com/substack/browser-launcher
软件介绍
Browser-Launcher可以检测系统上的所有浏览器版本,并在一个独立的配置文件中启动它们,用于自动测试。
示例代码:
var launcher = require('launcher');
launcher(function (err, launch) {
if (err) return console.error(err);
console.log('# available browsers:');
console.dir(launch.browsers);
var opts = {
headless : true,
browser : 'chrome',
proxy : 'localhost:7077',
};
launch('http://substack.net', opts, function (err, ps) {
if (err) return console.error(err);
});
});$ node example/launch.js
# available browsers:
{ local:
[ { name: 'chrome',
re: {},
type: 'chrome',
profile: '/home/substack/.config/browser-launcher/chrome-17.0.963.12_9c0bdd8d',
command: 'google-chrome',
version: '17.0.963.12' },
{ name: 'chromium',
re: {},
type: 'chrome',
profile: '/home/substack/.config/browser-launcher/chromium-18.0.1025.168_e025d855',
command: 'chromium-browser',
version: '18.0.1025.168' },
{ name: 'phantom',
re: {},
type: 'phantom',
headless: true,
profile: '/home/substack/.config/browser-launcher/phantom-1.4.0_31767fa2',
command: 'phantomjs',
version: '1.4.0' },
{ name: 'firefox',
re: {},
type: 'firefox',
profile: [Object],
command: 'firefox',
version: '12.0' } ] }
深入理解Android内核设计思想(第2版 套装上下册)
林学森 / 人民邮电出版社 / 2017-7-1 / 158
全书从操作系统的基础知识入手,全面剖析进程/线程、内存管理、Binder机制、GUI显示系统、多媒体管理、输入系统、虚拟机等核心技术在Android中的实现原理。书中讲述的知识点大部分来源于工程项目研发,因而具有较强的实用性,希望可以让读者“知其然,更知其所以然”。本书分为编译篇、系统原理篇、应用原理篇、系统工具篇,共4篇25章,基本涵盖了参与Android开发所需具备的知识,并通过大量图片与实例......一起来看看 《深入理解Android内核设计思想(第2版 套装上下册)》 这本书的介绍吧!
