You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have a date input custom element that I am testing using sendKeys.
Here is an extract of the tests :
it('should update the value after user input',async()=>{constel=awaitfixture<DSAInput>(html` <dsa-inputtype="date" requiredlang="fr-FR"></dsa-input> `);el.focus();awaitel.updateComplete;awaitsendKeys({type: '25'});awaitsendKeys({type: '10'});awaitsendKeys({type: '2024'});awaitsendKeys({press: 'Tab'});awaitel.updateComplete;expect(el.value).to.equal('2024-10-25');});
The tests pass OK in local, but I get the following error when it is performed as part of my Github CI.
This looks like a sync problem.
Have you ever observed similar issues with sendKeys ?
Is there a way to add a delay between each key press ?
The text was updated successfully, but these errors were encountered:
Hi,
I have a date input custom element that I am testing using
sendKeys
.Here is an extract of the tests :
The tests pass OK in local, but I get the following error when it is performed as part of my Github CI.
This looks like a sync problem.
Have you ever observed similar issues with
sendKeys
?Is there a way to add a delay between each key press ?
The text was updated successfully, but these errors were encountered: