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 6d29bef commit d0eb618Copy full SHA for d0eb618
src/FlaUI.WebDriver.UITests/ExecuteTests.cs
@@ -69,10 +69,8 @@ public void ExecuteScript_WindowsClearClipboard_IsSupported()
69
{
70
var driverOptions = FlaUIDriverOptions.TestApp();
71
using var driver = new RemoteWebDriver(WebDriverFixture.WebDriverUrl, driverOptions);
72
-
73
driver.ExecuteScript("windows: setClipboard", new Dictionary<string, object> {
74
["b64Content"] = "Pasted!"});
75
76
driver.ExecuteScript("windows: clearClipboard");
77
var result = driver.ExecuteScript("windows: getClipboard", new Dictionary<string, object> {});
78
Assert.That(result, Is.EqualTo(""));
0 commit comments