File tree 1 file changed +14
-0
lines changed
1 file changed +14
-0
lines changed Original file line number Diff line number Diff line change 3
3
using OpenQA . Selenium . Appium . Android ;
4
4
using OpenQA . Selenium . Appium . Enums ;
5
5
using System ;
6
+ using System . Drawing ;
6
7
using System . Runtime . Versioning ;
7
8
using System . Text . RegularExpressions ;
8
9
@@ -92,6 +93,19 @@ public void WhenGetClipboardImageGetClipboardShouldReturnNotImplementedException
92
93
Throws . TypeOf < NotImplementedException > ( ) ) ;
93
94
}
94
95
96
+ [ Test ]
97
+ #if ! NET48
98
+ [ SupportedOSPlatform ( "windows" ) ]
99
+ #endif
100
+ public void WhenSetClipboardImageSetClipboardShouldReturnNotImplementedException ( )
101
+ {
102
+ // Arrange
103
+ Image testImage = new Bitmap ( 100 , 100 ) ; // Create a sample image for testing
104
+
105
+ // Act & Assert
106
+ _ = Assert . Throws < NotImplementedException > ( ( ) => _driver . SetClipboardImage ( testImage ) ) ;
107
+ }
108
+
95
109
[ Test ]
96
110
public void WhenGetClipboardUrlGetClipboardShouldReturnNotImplementedException ( )
97
111
{
You can’t perform that action at this time.
0 commit comments