TestCafe无法使用Selector.withText()过滤<tspan>

时间:2019-10-10 21:33:48

标签: svg automated-tests e2e-testing testcafe tspan

我正在尝试使用选择器svg来过滤Selector('.joint-type-mapping-record .v-line').withText('testElement')图上的元素。但是结果是出现一条消息,提示在DOM中找不到该元素。

我检查了innerText是否可用于<tspan>,但不是。然后,我尝试添加customDOMProperties(addCustomDOMProperties({ innerText: (el) => el.innerText });),但收到错误消息:1) TypeError: Cannot redefine property: innerText

有什么方法可以使用<tspan>处理withText()

这里的页面代码:

<g model-id="6c1b0506-321a-4c27-8a06-7f2bfa5851ed" data-type="mapping.Record" id="j_488" class="joint-cell joint-type-mapping joint-type-mapping-record joint-element joint-theme-default" magnet="false" transform="translate(-171,99)">
<text joint-selector="headerLabel" id="v-11781" font-size="20" xml:space="preserve" font-family="Galano Grotesque" font-weight="500" text-anchor="middle" text-vertical-anchor="middle" fill="#333333" transform="matrix(1,0,0,1,109,15)">
<tspan dy="0.3em" class="v-line">testElement</tspan></text></g>

1 个答案:

答案 0 :(得分:2)

默认情况下,TestCafe不会在svg元素内搜索HTML元素。您可以为此使用ClientFunction。看下面的例子:

import { Selector } from 'testcafe';

fixture `New Fixture`
    .page `https://xg35y.csb.app/`;

test('New Test', async t => {
    const getVlineElement = Selector(() => {
        const allVlineElements = document.querySelectorAll('.joint-type-mapping-record .v-line');

        return [].slice.call(allVlineElements)
            .filter(tspan => tspan.textContent === 'testElement')[0];
    });

    await t
        .expect(Selector(getVlineElement).textContent).eql('testElement');
});