今回はフロントエンドページのテスト方法についてご紹介します。フロントエンドページのテストの注意点は何ですか?実際の事例を見てみましょう。
関数のテストに関しては、例えば固定の入出力があればmochaを使ってテストできます
ページの関数のテストに関しては、nightmareがオススメです。
var Nightmare = require('nightmare');var nightmare = Nightmare({ show: true }); nightmare .goto('https://www.taobao.com/') //待测试链接 .type('#q', '电视机') //输入框选中,输入值 .click('form[action*="/search"] [type=submit]')//form表单提交 .wait(3000) .exists('#spulist-grid') .evaluate(function () { return document.querySelector('#spulist-grid .grid-item .info-cont') //获取需返回的值 .textContent.trim(); }) .end() .then(function (result) { //即为return中的数据 console.log(result); }) .catch(function (error) { //错误捕捉 console.error('Search failed:', error); });
はモカと組み合わせて使用できます。
var Nightmare = require('nightmare');var expect = require('chai').expect;var fork = require('child_process').fork; describe('test index.html', function() { var child; before(function (done) { //钩子函数,测试之前调用 child = fork('./server.js'); child.on('message', function (msg) { if (msg === 'listening') { done(); } }); }); after(function () { //钩子函数,测试之后调用 child.kill(); }); it('点击后标题改变', function (done) { var nightmare = Nightmare({ show: true }); nightmare .goto('http://127.0.0.1:8080/index.html') .click('h1') .wait(1000) .evaluate(function () { return document.querySelector('h1').style.color; }) .end() .then(function(color) { console.log(color) expect(color).to.equal('red'); done(); }) }); });
なぜだかわかりませんが、フロントエンドの自動テストはある程度難しいと常々感じています。マスターに普及を依頼してください...
この記事の事例を読んだ後は、この方法を習得したと思います。さらに興味深い情報については、php 中国語 Web サイトその他の関連記事に注目してください。
推奨読書:
JavaScriptのcall、apply、bindの違いは何ですか
以上がフロントエンドページをテストする方法の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。