5

我正在使用EdgeDriver在我的浏览器 (Edge 38.14393.0.0) 上运行自动化测试。我的测试使用 C#,所以我使用的是 .NET 驱动程序:

using OpenQA.Selenium.Remote;
using OpenQA.Selenium.Edge;

var options = new EdgeOptions();
options.PageLoadStrategy = EdgePageLoadStrategy.Normal;

RemoteWebDriver driver = return new EdgeDriver(Environment.CurrentDirectory, options, TimeSpan.FromSeconds(60));

driver.SetDocumentSize(new Size(800, 600)); // HERE!

错误

这段代码是我在测试开始时运行的。它在最后一行失败了:

类初始化方法 Web.TestSuite.UIRendering.RenderingTestSuiteEdge.TestClassInitialize 抛出异常。System.InvalidOperationException: System.InvalidOperationException: 窗口大小操作失败,因为窗口当前不可用。

使用此堆栈跟踪:

OpenQA.Selenium.Remote.RemoteWebDriver.UnpackAndThrowOnError(Response errorResponse) in c:\Projects\webdriver\dotnet\src\webdriver\Remote\RemoteWebDriver.cs: line 1126
OpenQA.Selenium.Remote.RemoteWebDriver.Execute(String driverCommandToExecute, Dictionary`2 parameters) in c:\Projects\webdriver\dotnet\src\webdriver\Remote\RemoteWebDriver.cs: line 920
OpenQA.Selenium.Remote.RemoteWindow.set_Size(Size value) in ...

仅供参考请注意,我使用它们各自的驱动程序在 Chrome 和 IE11 上运行了其他测试。当我调用SetDocumentSize这些时,我没有收到任何错误。

开放式问题

我可以找到一些与此问题相关的未解决问题:

问题

所以,这些是我的问题:

  • 有没有人成功在 Edge 中设置窗口大小?
  • 这个问题是我遇到的已知问题吗?如果是这样,它是固定的吗?引用的问题(看起来相似)仍处于打开状态且未提供状态。
  • 有什么解决方法吗?
4

2 回答 2

2

为 C# 尝试其中一种:

driver.Manage().Window.Size = new Size(1920, 1080);
driver.Manage().Window.Maximize();

尽管我出于不同的原因遇到该错误(例如此处的错误-> https://developer.microsoft.com/en-us/microsoft-edge/platform/issues/10319887/)。

现在我在每次测试之前杀死驱动程序和边缘的所有进程,所以希望它会像这样解决:

try
{
     foreach (var process in Process.GetProcessesByName("MicrosoftWebDriver"))
     {
           process.Kill();
     }

     foreach (var process in Process.GetProcessesByName("MicrosoftEdge"))
     {
           process.Kill();
     }
}
catch (Exception)
{
}

此外,例如,如果您通过 RDP 在远程计算机上运行它们,则在关闭 RDP 时会出现相同的错误。这是我找到的当前解决方法:

Create a batch file with this code:

for /f "skip=1 tokens=3" %%s in ('query user %USERNAME%') do (
  %windir%\System32\tscon.exe %%s /dest:console
)

Create a desktop shortcut to this file. To do this, right-click the batch
file and select Send to | Desktop (create shortcut).

In the shortcut properties, click Advanced and select Run as administrator.

现在,当您需要断开与远程桌面的连接时,请在远程计算机上双击此快捷方式(在远程桌面窗口中)。

感谢https://support.smartbear.com/testcomplete/docs/testing-with/running/via-rdp/keeping-computer-unlocked.html的脚本。

于 2017-03-17T08:46:00.750 回答
1

这对我有用:

driver.manage().window().setSize(new Dimension(1250, 720));
于 2017-03-06T18:05:52.380 回答