|
@@ -798,8 +798,10 @@ internal class WindowsDriver : ConsoleDriver {
|
|
|
if (Environment.OSVersion.Platform == PlatformID.Win32NT) {
|
|
|
WinConsole = new WindowsConsole ();
|
|
|
// otherwise we're probably running in unite tests
|
|
|
+ Clipboard = new WindowsClipboard ();
|
|
|
+ } else {
|
|
|
+ Clipboard = new FakeDriver.FakeClipboard ();
|
|
|
}
|
|
|
- Clipboard = new WindowsClipboard ();
|
|
|
|
|
|
_isWindowsTerminal = Environment.GetEnvironmentVariable ("WT_SESSION") != null;
|
|
|
|