I have no idea why I'm getting this error, and I am thinking that I overlooked something very simple.
My (simple, java) Code:
--import org.openqa.selenium.WebDriver;import org.openqa.selenium.chrome.ChromeDriver;
public class joinGame2 {WebDriver driver = new ChromeDriver();driver.get("http://www.google.com");
}
I am unable to call .get - I get a Cannot resolve symbol 'get' error (Java)
Anybody had recent issues with ChromeDriver?
You received this message because you are subscribed to the Google Groups "Selenium Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to selenium-user...@googlegroups.com.
To post to this group, send email to seleniu...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/selenium-users/aecd573f-59ab-48c1-bb82-e0a4006553f4%40googlegroups.com?hl=en-US.
For more options, visit https://groups.google.com/groups/opt_out.
I do have the latest chromedriver executable, and I have added it to my PATH.I get the following error:
Cannot resolve symbol 'get' error
It appears that I have everything imported to use .get, but it is failing.