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 1a6ffea commit 9104f71Copy full SHA for 9104f71
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