标签: regex automated-tests e2e-testing web-testing testcafe
我想在正则表达式断言中添加一个变量“ example”。
const example = Selector('xyz'); await t.expect(getLocation()).match(/^https:\/\/int-.*.example.com\/en\/example\/-\/ ** HERE SHOULD BE INSERTED A VARIABLE, 'example' ** \/$/)
我该怎么办?
答案 0 :(得分:3)
您可以使用RegExp Constructor来制作。