I am a newbie to Selenium and trying to open localhost:3000 page from Chrome via selenium driver. The code is :
import com.google.common.base.Function;
imp
This just happened to me when using selenium grid with python and was caused by something different than the other answers suggest (in my case at least).
It turns out there was a runtime exception being raised after the driver object was being created (and connecting to chrome) but before it was being instructed to navigate to a URL. This all runs on a celery task queue so it was easy for me to miss. So if updating the chrome driver doesn't work, double check that you're navigating to a URL correctly and there's no errors etc.
For example:
driver = webdriver.Remote(
command_executor="http://:4444/wd/hub",
)
# a function here raised a runtime exception, causing chrome to launch
# but sit there with the default URL "data;/"
driver.get("www.google.com")