我想在量角器中断言链接文本是通过以下方式组成的:text-1(其中文本是一个变量,数字可以由任何数字组成)。
我尝试了以下方法:
browser.wait(
ExpectedConditions.visibilityOf(
element(by.xpath(`//a[@class = 'collapsed' and starts-with(text(), '${text}') and ends-with(text(), '-(/d+)')]`))),
5000)
和
browser.wait(
ExpectedConditions.visibilityOf(
element(by.xpath(`//a[@class = 'collapsed' and starts-with(text(), '${text}') and ends-with(text(), '/^-(/d+)$/')]`))),
5000)
不幸的是,上述 xpath 都不起作用。
我怎样才能解决这个问题?