防止 Playwright 表单在特定测试中考虑 @ char 作为标签

问题描述 投票:0回答:1

我有以下测试:

test("search special-char: '@'", async ({ page }) => {
  // test content
});

问题是剧作家认为结束测试名称的 ' 是标签enter image description here

有什么办法可以预防吗?

javascript typescript automation tags playwright
1个回答
0
投票
您可以将测试标题括在双引号中,并使用反斜杠 () 转义“@”字符,如下所示:

test("This is a literal character \@ ")
    
© www.soinside.com 2019 - 2024. All rights reserved.