Discussion:
Can't call driver.get() with ChromeDriver
Morgan Wren
2013-05-16 22:11:14 UTC
Permalink
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-users+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/***@public.gmane.org
To post to this group, send email to selenium-users-/JYPxA39Uh5TLH3MbocFF+G/***@public.gmane.org
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.
Mark Collin
2013-05-17 08:00:47 UTC
Permalink
What error are you getting?

Do you have the latest version of chromedriver executable ?
Post by Morgan Wren
I have no idea why I'm getting this error, and I am thinking that I
overlooked something very simple.
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
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.
--
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-users+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/***@public.gmane.org
To post to this group, send email to selenium-users-/JYPxA39Uh5TLH3MbocFF+G/***@public.gmane.org
To view this discussion on the web visit https://groups.google.com/d/msgid/selenium-users/5195E3AF.5030602%40lazeryattack.com?hl=en-US.
For more options, visit https://groups.google.com/groups/opt_out.
Morgan Wren
2013-05-17 18:13:49 UTC
Permalink
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.
Post by Mark Collin
What error are you getting?
Do you have the latest version of chromedriver executable ?
I have no idea why I'm getting this error, and I am thinking that I
overlooked something very simple.
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.chrome.ChromeDriver;
public class joinGame2 {
WebDriver driver = new ChromeDriver();
driver.get("http://www.google.com" <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
.
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.
--
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-users+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/***@public.gmane.org
To post to this group, send email to selenium-users-/JYPxA39Uh5TLH3MbocFF+G/***@public.gmane.org
To view this discussion on the web visit https://groups.google.com/d/msgid/selenium-users/ba64f38a-fffd-423e-b351-34c010609244%40googlegroups.com?hl=en-US.
For more options, visit https://groups.google.com/groups/opt_out.
Tarun Kumar
2013-05-20 08:24:41 UTC
Permalink
a snapshot of error may help in debugging
Post by Morgan Wren
I do have the latest chromedriver executable, and I have added it to my
PATH.
Cannot resolve symbol 'get' error
It appears that I have everything imported to use .get, but it is failing.
Post by Mark Collin
What error are you getting?
Do you have the latest version of chromedriver executable ?
I have no idea why I'm getting this error, and I am thinking that I
overlooked something very simple.
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.chrome.ChromeDriver;
public class joinGame2 {
WebDriver driver = new ChromeDriver();
driver.get("http://www.google.com" <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
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.
--
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-users+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/***@public.gmane.org
To post to this group, send email to selenium-users-/JYPxA39Uh5TLH3MbocFF+G/***@public.gmane.org
To view this discussion on the web visit https://groups.google.com/d/msgid/selenium-users/48b3cd01-a6ea-4c13-baa7-82bca796531e%40googlegroups.com?hl=en-US.
For more options, visit https://groups.google.com/groups/opt_out.
Loading...