PhantomJS의 rapa Nightmare를 시도해보도록 하겠습니다.
5086 단어 JavaScriptPhantomJSNightmare
설치하다.
npm install nightmare
샘플 코드(+ 캡처)
정식 샘플에 화면 포획을 추가해 봤어요.
Nightmare
example_nightmare.js
var Nightmare = require('nightmare');
new Nightmare()
.goto('http://yahoo.com')
.type('input[title="Search"]', 'github nightmare')
.click('.searchsubmit')
.screenshot('yahoo.png')
.run();
CasperJS
그나저나 CasperJS 쓰면 이런 느낌이에요.
example_casper.js
var casper = require('casper').create();
casper.start('http://google.fr/', function() {
this.fill('form[action="/search"]', { q: 'casperjs' }, true);
});
casper.then(function() {
this.capture('google.png');
});
casper.run();
실행
$ node sample_nightmare.js
이미지 캡처
배경이 투명해지기(크기에 따라 축소)
API
플러그 인
설치nightmare-swiftly 후 다음 기능 사용 가능
감상
CasperJS의 Testing은 없는 것 같습니다.
시도는 안 해봤지만 플러그인을 잘 쓰면 좋을 것 같아요.
참고 자료
Reference
이 문제에 관하여(PhantomJS의 rapa Nightmare를 시도해보도록 하겠습니다.), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/cortyuming/items/ba1e0190954111223d29텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)