File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
src/FlaUI.WebDriver.UITests Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -70,11 +70,11 @@ public void ExecuteScript_WindowsClearClipboard_IsSupported()
7070 var driverOptions = FlaUIDriverOptions . TestApp ( ) ;
7171 using var driver = new RemoteWebDriver ( WebDriverFixture . WebDriverUrl , driverOptions ) ;
7272
73- var result = driver . ExecuteScript ( "windows: setClipboard" , new Dictionary < string , object > {
73+ driver . ExecuteScript ( "windows: setClipboard" , new Dictionary < string , object > {
7474 [ "b64Content" ] = "Pasted!" } ) ;
7575
76- result = driver . ExecuteScript ( "windows: clearClipboard" ) ;
77- result = driver . ExecuteScript ( "windows: getClipboard" , new Dictionary < string , object > { } ) ;
76+ driver . ExecuteScript ( "windows: clearClipboard" ) ;
77+ var result = driver . ExecuteScript ( "windows: getClipboard" , new Dictionary < string , object > { } ) ;
7878 Assert . That ( result , Is . EqualTo ( "" ) ) ;
7979 }
8080
You can’t perform that action at this time.
0 commit comments