You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It should not take a long time to find Dom elements on the web page.
Actual Behavior -
It takes about 3 seconds to find a Dom element on the web page.
Steps to reproduce -
var options = new ChromeOptions();
options.AddArguments("disable-infobars");
private ChromeDriver _webDriver;
_webDriver = new ChromeDriver(options);
var element = _webDriver.FindElementById("btnLogin");
The text was updated successfully, but these errors were encountered:
This is a known issue with the .NET bindings on .NET Core. It’s due to a bug in .NET Core’s networking stack, and there’s not much the .NET bindings can do in their own without resorting to doing DNS resolution itself, which is likely to be error-prone, inefficient, and difficult to maintain.
@jimevans My apologies i should have mentioned this in the description. I am not using localHost i am using the ip ("http://127.0.0.1") and i also tried the IP Address of my PC and that also did not make a difference. I believe this is a different issue. I also tried this on mac and windows 10
Can you then please supply an exact source code example that demonstrates the issue, while using the IP address (even the IPv4 loopback) directly? Your example in the issue report does not do so, and will use localhost for resolution.
lockbot
locked and limited conversation to collaborators
Aug 16, 2019
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Meta -
OS: WIndows 10
Selenium Version: 3.11.0
Browser: Chrome
Browser Version: 62.0.3202.94
Expected Behavior -
It should not take a long time to find Dom elements on the web page.
Actual Behavior -
It takes about 3 seconds to find a Dom element on the web page.
Steps to reproduce -
The text was updated successfully, but these errors were encountered: