如何在 Cypress It() 命令说明中使用模板文字
How to use Template Literals in Cypress It() command description
当我在 It 命令的描述中放置模板文字时,模板文字不会被评估,而是显示模板文字代码。
let title = "Page Tile";
it('Find Page Title = ${title}' , function () {
cy.title({ timeout: 90000 }).should('include', title)
});
输出如下:Find Page Title = ${title}
我希望输出:Find Page Title = Page Tile
确保您使用了反引号。 `` 而不是 ''。
当我在 It 命令的描述中放置模板文字时,模板文字不会被评估,而是显示模板文字代码。
let title = "Page Tile";
it('Find Page Title = ${title}' , function () {
cy.title({ timeout: 90000 }).should('include', title)
});
输出如下:Find Page Title = ${title}
我希望输出:Find Page Title = Page Tile
确保您使用了反引号。 `` 而不是 ''。