TestCafe: console.log() 一个选择器的值

TestCafe: console.log() the value of a selector

我尝试使用 TestCafe selector select 下面跨度的文本值 SR-12948,然后将其分配给 const。所以我可以将它作为字符串添加到 withAttribute 方法中。那真的行不通。所以我想检查我的 const srCaseIDString 的值是多少。是否可以使用控制台日志来做到这一点?所以它会在出现我的测试结果和错误的同一终端中记录该 const 的值?

这是我的测试:

<span data-template="" data-test-id="2014100715101007275150" class="supporting_text_il" style="">SR-12948</span>

import { Selector, t } from "testcafe";
import XPathSelector from "../utils/xpath-selector";

const button= Selector("#button");  

test("First Test", async (t) => {
     await t
        .click(button);

        const srCaseID = await  XPathSelector("//span[@data-test-id='2014100715101007275150']").innerText;

        console.log(srCaseID);

        const iframeCase = await Selector('iframe').withAttribute('title', srCaseIDString);
       
        await t
        .switchToIframe(iframeCase);
     
});

谢谢!

innertext != innerText,区分大小写

这很好用:

const elementInnerText = await Selector('#id').innerText;
console.log(elementInnerText);