I m Getting error as soon as I Initialize driver new ChromeDriver

+1 vote
below is my code.

package com.salesforce.pageobject;

import org.openqa.selenium.WebDriver;

import org.openqa.selenium.chrome.ChromeDriver;

import org.testng.annotations.BeforeClass;

public class BaseClass {

// public String url =

// public String username =

// public String password =

public static WebDriver driver;

@BeforeClass

public void setup()

{

System.setProperty("webdriver.chrome.driver",System.getProperty("user.dir")+"//Drivers//chromedriver.exe");

    driver = new ChromeDriver();

}

I'm getting error at very first line (package com.salesforce.pageobject;) and driver = new ChromeDriver();

when I initiaize WebDriver means when I write driver = new ChromeDriver();

Error that I get at package com.salesforce.pageobject; is below

(The type org.openqa.selenium.remote.RemoteWebDriver cannot be resolved. It is indirectly referenced from required .class files)

for driver = new ChromeDriver(); it's Type mismatch: cannot convert from ChromeDriver to WebDriver
Aug 22, 2019 in Selenium by Prajwal Wakekar
33,045 views

2 answers to this question.

+6 votes

Hi Prajwal, this type of error occurs when you have added the external jars in the ModulePath. To resolve this issue, you can remove the external jars from the node "Modulepath". Select the node "Classpath" then add the external jars. Review that all the jars are under the node "Classpath"

Hope this helps!

Check out selenium online training for more!

answered Oct 11, 2019 by Abha
• 28,140 points

edited Sep 6, 2023 by Khan Sarfaraz
Hi @KK, thank you for your contribution to the Edureka Community.

Register/Sign up on the community to gain points for further contributions. You may ask questions, answer, upvote, and downvote an answer. Each of these would fetch you points and you could be among the top contributors and win exciting merchandise from Edureka.

Cheers!
Thank u for the quick fix idea...it was really help full.
Great Help this worked for me

I have

Eclipse Version: 2020-09 (4.17.0)

java version "15.0.1" 2020-10-20

Selenium WebDriver: v3.141.59
excellent for me .... fixed the issue
You save my day. error resloved
+1 vote
If still getting the error "WebDriver cannot be resolved", after adding jar files to class path, go to Project -> Properties -> Java Compiler -> Change compiler level to 1.7 or so in Eclipse. This will resolve the errors.
answered Apr 9, 2020 by anonymous
Thanks heaps...It worked..hurray....was scratching my head off since last night...Thanks once again :)
Hi @Nishi, thank you for your contribution to the Edureka Community.

Register/Sign up on the community to gain points for further contributions. You may ask questions, answer, upvote, and downvote an answer. Each of these would fetch you points and you could be among the top contributors and win exciting merchandise from Edureka.

Cheers!
Hi, This worked for me, thank you so much

But didnt understand the new package restriction issue?
Hey @Sowmya Anakamahadeva, there might be some dependency/compatibility issues with the old package. Hence upgrading it to new package would help.
Great Help this worked for me

I have

Eclipse Version: 2020-09 (4.17.0)

java version "15.0.1" 2020-10-20

Selenium WebDriver: v3.141.59
Thanks..It also resolve my problem.It was same of compiler level

Related Questions In Selenium

0 votes
1 answer
0 votes
1 answer

When i give WebDriver driver=new ChromeDriver();

If you use ChromeDriver driver = new ChromeDriver(); the ChromeDriver instance ...READ MORE

answered Oct 23, 2020 in Selenium by Karan
• 19,610 points
6,270 views
0 votes
2 answers

Getting Error in System.setProperty of ChromeDriver

System.setProperty("webdriver.chrome.driver", ...READ MORE

answered Jan 8, 2019 in Selenium by anonymous
9,093 views
0 votes
1 answer
0 votes
2 answers

Finding WebDriver element with Class Name in java

The better way to handle this element ...READ MORE

answered Apr 10, 2018 in Selenium by nsv999
• 5,500 points
12,618 views
0 votes
2 answers

Problem while using InternetExplorerDriver in Selenium WebDriver

enable trusted connection  in internet explorer by ...READ MORE

answered Aug 31, 2020 in Selenium by Sri
• 3,190 points
8,572 views
0 votes
1 answer

Geo-location microphone camera pop up

To Allow or Block the notification, access using Selenium and you have to ...READ MORE

answered May 11, 2018 in Selenium by Samarpit
• 5,910 points
6,629 views
0 votes
2 answers

How to use such xpath to find web elements

xpath are two types. 1) Absolute XPath:    /html/b ...READ MORE

answered Sep 3, 2020 in Selenium by Sri
• 3,190 points
7,519 views
0 votes
1 answer

i am not able to perform this method in selenium driver.get("google")

Hi Sachin, are you getting any errors ...READ MORE

answered May 15, 2019 in Selenium by Abha
• 28,140 points
1,529 views
webinar REGISTER FOR FREE WEBINAR X
REGISTER NOW
webinar_success Thank you for registering Join Edureka Meetup community for 100+ Free Webinars each month JOIN MEETUP GROUP