-
Notifications
You must be signed in to change notification settings - Fork 60
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
TimedOut after 60 seconds #250
Comments
That usually means either:
|
Hi, How can i do when The server is slow? |
Get a beefier server (or increase the timeout) ;) If you have this sort of problem locally and your computer isn't slow then it's like the former issue - the browser you are targeting has a mismatch with the version of web driver. |
Thanks robdmoore, How can i increase the time out in this code I used WaitFor.AjaxCallsToComplete(TimeSpan.FromSeconds(120)); before the click button but it didn't work. |
It's something you need to specify when creating the web driver object. This link shows examples for how to do that for the Firefox web driver: http://stackoverflow.com/questions/22322596/selenium-error-the-http-request-to-the-remote-webdriver-timed-out-after-60-sec |
how can i specify the firefox time out in seleno host instance |
When you create the e.g. something like: var timeout = TimeSpan.FromSeconds(120);
Instance.Run("Application", port, c => c
.WithRouteConfig(BigBrother.Web.BigBrotherWeb.RouteConfig.RegisterRoutes)
.UsingLoggerFactory(new ConsoleFactory())
.WithRemoteWebDriver(() => new FirefoxDriver(new FirefoxBinary(), new FirefoxProfile(), timeout))); Keep in mind this approach allows your tests to take a long time to run so I'd highly recommend you get a faster server if you find you need to do this. |
OK thanks a lot |
Hi,
I want to navigate to another page by button click.
public T SubmitApplication<T>() where T : UiComponent, new() { return Navigate.To<T>(By.CssSelector(".login-button > button")); }
But i get this error :
TestStack.Seleno.Configuration.Interceptors.SelenoReceivedException : The HTTP request to the remote WebDriver server for URL http://localhost:7055/hub/session/c1e40776-5c00-4e65-8217-3814aafdab7f/element timed out after 60 seconds. ----> OpenQA.Selenium.WebDriverException : The HTTP request to the remote WebDriver server for URL http://localhost:7055/hub/session/c1e40776-5c00-4e65-8217-3814aafdab7f/element timed out after 60 seconds.
How can i fix this error?
Thanks.
The text was updated successfully, but these errors were encountered: