TestCafe
https://medium.com/@tg16/how-to-iterate-links-and-click-them-in-testcafe-76bcc3fada7c
TestController extend method testcafe https://github.com/DevExpress/testcafe/issues/2765
package.jsopnでは "e2e": "testcafe chrome ./test/*-test.js", コマンド yarn comman --hoge bar ソースはこう import _ from 'lodash'; /** * ["chrome:headless","./test/hoge-test.js","./test/hoge-test.js","--hoge","bar","--fuga","hogehoge"] * を…
TestCafe await async メソッド test('テスト名', async t => { const buttonName = await Selector('div').withText(/.*正規表現.*/).withAttribute('class', 'class-name'); こういうのは こういうメソッド作って const myMethod = async (regex) => { con…