从testcafe中打开的N'th模式中选择OK按钮

问题描述 投票:3回答:1

我在测试中打开了两个模态,我希望能够点击第二个模态中的“确定”按钮(下面的html中的第二个选定元素)。

我目前的代码是:

import { waitForReact } from 'testcafe-react-selectors';
import { Selector } from 'testcafe';

fixture `App tests`
    .page('http://localhost:3000/')
    .beforeEach(async () => {
        await waitForReact();
    });

test('Can open and accept all pop ups', async t => {

    //open first modal
    await t
        .click('#LayerAddingPopUpButtonID');

    //select OK button from first modal
    const modalOKButton = Selector('div.ant-modal')
        .find('div.ant-modal-footer')
        .find('button.ant-btn-primary');

    //click OK button from first modal
    await t
        .expect(modalOKButton.with({visibilityCheck: true}).exists)
        .ok({timeout: 30000})
        .hover(modalOKButton)
        .click(modalOKButton);

    //open second modal
    await t
        .click('#LayerDeletingPopUpButtonID');

    //select OK button from second modal
    const secondModalOKButton = Selector(??);
});

我正在使用的html如下。我正在尝试选择第二个OK按钮:

enter image description here

javascript html automated-tests e2e-testing testcafe
1个回答
5
投票

你尝试过使用nth吗?

const modalOKButton = Selector('div.ant-modal').nth(1)
        .find('div.ant-modal-footer')
        .find('button.ant-btn-primary');

或者尝试使用aria-labelledby的选择器

const modalOKButton = Selector("[aria-labelledby='rcDialogTitle1']")
        .find('div.ant-modal-footer')
        .find('button.ant-btn-primary');
© www.soinside.com 2019 - 2024. All rights reserved.