LoginSignup
0
0

More than 5 years have passed since last update.

Nightmare で スタイルシートを適用する action をつくる

Posted at

nightmare 2.1.0 で確認

Nightmare.action('css', function(css, done){
   this.child.emit('css', css);
   done();
});

/* 使用例
  yield nightmare.goto('http://example.com').css(`
    body { font-family:"Comic Sans MS" !important; }
  `).wait(1000);
*/
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0