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.
2 parents bc5e152 + 9104f71 commit 40c1df0Copy full SHA for 40c1df0
src/Components/test/E2ETest/Tests/EventTest.cs
@@ -173,8 +173,8 @@ public void DragDrop_CanTrigger()
173
var actions = new Actions(Browser).DragAndDrop(input, target);
174
175
actions.Perform();
176
- // drop doesn't seem to trigger in Selenium. But it's sufficient to determine "any" drag event works
177
- 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));
178
}
179
180
[Fact]
0 commit comments