如何将 html 元素定位器中的日期字符串与 javascript 连接起来

how to concatenate a date string inside an html element locator with javascript

我在剧作家测试中使用 js 有以下代码行

await page.click('[aria-label="Choose Friday, March 4th, 2022"]');

我想将日期存储在这样的变量中:

let date = "Friday, March 4th, 2022";

我有

await page.click('[aria-label="Choose 'date' "]');

但是在我的编辑器中我看到警告

',' expected

要连接字符串,请使用 +

await page.click('[aria-label="Choose ' + date + ' "]');