Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Target element is waiting two time for the 'typeText' command #6623

Closed
miherlosev opened this issue Oct 18, 2021 · 1 comment · Fixed by #7111
Closed

Target element is waiting two time for the 'typeText' command #6623

miherlosev opened this issue Oct 18, 2021 · 1 comment · Fixed by #7111
Assignees
Labels
FREQUENCY: level 1 TYPE: bug The described behavior is considered as wrong (bug).

Comments

@miherlosev
Copy link
Collaborator

This issue is a result of implementing confidential option.

Before typing to input, TestCafe inspect the input to decide should mask typed text in report or not. The inspecting uses the executeSelector command that waits the target element. So, we get 2 target element waiting loops: 1 - inspecting element, 2 - typeText action.

Test for reproduce

fixture `demo page`
    .page `https://devexpress.github.io/testcafe/example/`;

test('test', async t => {
    await t .typeText('developer-name', 'some text');
});
@github-actions
Copy link

github-actions bot commented Jul 8, 2022

Release v1.20.0-rc.1 addresses this.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
FREQUENCY: level 1 TYPE: bug The described behavior is considered as wrong (bug).
Projects
None yet
2 participants