测试咖啡馆:如何根据列中的特定文本找到一行,然后在同一行的不同单元格中单击 link

Test cafe: How can i find a row based on a specific text in column and click link in a different cell within the same row

我有一个 table 看起来像这样: Table

我正在尝试根据“名称”列中的文本单击“link”。例如 在 table 中查找文本“autotest3”并单击同一行中相应的 link

您可以指定 Selector,它将根据“名称”列中的文本查找特定的 table 行,然后从中查找子元素(table 单元格)第 3 列。例如:

await t.click(Selector('tr').withText('Autotest2').find('td').withText('Link'));