const jsdom = require('sdenv-jsdom'); const { JSDOM, CookieJar } = jsdom; describe('form特性检测', () => { test('子元素存在name属性', () => { const dom = new JSDOM('
'); const action = dom.window.document.getElementsByTagName('form')[0].action; expect(action !== 'https://target.url/path/to').toBe(true); expect(dom.window.document.getElementById('username')).toBe(action); }); });