We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ee46ab5 commit e3a3257Copy full SHA for e3a3257
src/Components/test/E2ETest/Tests/EventTest.cs
@@ -215,8 +215,8 @@ public void DragDrop_CanTrigger()
215
var actions = new Actions(Browser).DragAndDrop(input, target);
216
217
actions.Perform();
218
- // drop doesn't seem to trigger in Selenium. But it's sufficient to determine "any" drag event works
219
- Browser.Equal("dragstart,", () => output.Text);
+ // drop doesn't reliably trigger in Selenium. But it's sufficient to determine "any" drag event works
+ Browser.True(() => output.Text.StartsWith("dragstart,", StringComparison.Ordinal));
220
}
221
222
// Skipped because it will never pass because Selenium doesn't support this kind of event
0 commit comments