为什么 visual studio 中的执行时间与浏览器堆栈中的执行时间不同?我该如何解决?

Why the execution time is different in visual studio than browserstack? How can I fix it?

我 运行 在 Visual Studio C# 中使用 Test Explorer 进行测试,它 returns 超时并且执行时间是 30 秒(我指定了那个时间)但是在 browserstack将近2分钟。如何更改 browserstack 中的 90 秒空闲超时,以便同时完成 Visual studio 和 browserstack 中的测试?这给我带来了问题,因为我在队列中有很多测试,而且我已经达到了我的帐户限制

您好像在询问如何增加网络驱动程序的默认超时时间。

Driver.Manage().Timeouts().ImplicitWait = TimeSpan.FromSeconds(90);
Driver.Manage().Timeouts().PageLoad = TimeSpan.FromSeconds(90);

上面的代码更改了驱动程序等待页面加载的最长时间以及驱动程序在查找元素时等待的最长时间。这是假设您的 IWebDriver 对象被命名为 'Driver.