Skip to content

Commit eab3020

Browse files
authored
test: Add missing test for SetClipboardImage method (#762)
1 parent d0790e4 commit eab3020

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

test/integration/Android/ClipboardTest.cs

+14
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
using OpenQA.Selenium.Appium.Android;
44
using OpenQA.Selenium.Appium.Enums;
55
using System;
6+
using System.Drawing;
67
using System.Runtime.Versioning;
78
using System.Text.RegularExpressions;
89

@@ -92,6 +93,19 @@ public void WhenGetClipboardImageGetClipboardShouldReturnNotImplementedException
9293
Throws.TypeOf<NotImplementedException>());
9394
}
9495

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+
95109
[Test]
96110
public void WhenGetClipboardUrlGetClipboardShouldReturnNotImplementedException()
97111
{

0 commit comments

Comments
 (0)