官方說法A high-level browser automation library
,翻譯過來就是高級瀏覽器自動化庫html
經常使用於UI測試和爬網前端
功能測試必須在真正瀏覽器作,如今有四種方法。node
1.nightmare依賴於electron。安裝electron(http://www.cnblogs.com/tanyongli/p/7504603.html)git
2.安裝完後electron後安裝Nightmaregithub
新建一個文件夾nightmare,在命令行裏打開這個目錄,執行 $ npm install nightmare
npm
出現warn:在其餘文章中看到說能夠先不用管瀏覽器
在nightmare文件夾裏面出現node_modules文件夾less
在nightmare文件夾裏新建example.js文件dom
example.jselectron
1 var Nightmare = require('nightmare'); 2 var nightmare = Nightmare({ show: true }) 3 4 nightmare 5 .goto('http://yahoo.com') 6 .type('form[action*="/search"] [name=p]', 'github nightmare') 7 .click('form[action*="/search"] [type=submit]') 8 .wait('#main') 9 .evaluate(function () { 10 return document.querySelector('#main .searchCenterMiddle li a').href 11 }) 12 .end() 13 .then(function (result) { 14 console.log(result) 15 }) 16 .catch(function (error) { 17 console.error('Search failed:', error); 18 });
而後在命令行裏執行 $ node example.js
來執行example.js 這個文件,會出現效果圖
參考網址:https://github.com/ruanyf/jstraining/blob/master/docs/engineering.md