ERROR cache util win cc 21 Unable to move the cache Access is denied 0x5

0 votes

Aug 19, 2019 in Selenium by rrgeereddy
11,203 views

I got the same error....here is the code.

package newpackage;

import org.openqa.selenium.WebDriver;

import org.openqa.selenium.chrome.ChromeDriver;

public class MyClass {

public static void main(String[] args) {

System.setProperty("webdriver.chrome.driver","C:/Program Files (x86)/Google/Chrome/Application/chrome.exe");

System.out.println(System.getProperty("webdriver.chrome.driver"));

WebDriver driver = new ChromeDriver();

String baseUrl = "https://www.edureka.co/";

String expectedTitle = "Welcome: Mercury Tours";

String actualTitle = "";

driver.get("https://www.edureka.co/");

actualTitle = driver.getTitle();

if (actualTitle.contentEquals(expectedTitle)){

System.out.println("Test Passed!");

} else {

System.out.println("Test Failed");

}

}

}

Try this:

System.setProperty("webdriver.chrome.driver","C:\\Program Files(x86)\\Google\\Chrome\\Application\\chrome.exe");

You're setting the chrome browser binary path, what you should set here is the chromedriver path. This should do!

1 answer to this question.

0 votes
@rrgeereddy, can you show how you are setting driver path in System.SetProperty() method. Please check whether you are using Chrome/Firefox/IE driver binary path or driver path. Please share your code's screenshot, the lines in which error are showing.
answered Aug 19, 2019 by Abha
• 28,140 points
System.setProperty("webdriver.chrome.driver",

"C:\\Program Files (x86)\\Google\\Chrome\\Application\\chrome.exe");

I am using this one but still getting the same issue can you help me in that?
Hi @Akash! Can you please post the error logs?

Related Questions In Selenium

+1 vote
2 answers
+1 vote
1 answer

python selenium error: element is not attached to the page document

Add more sleep time where code breaks. ...READ MORE

answered Feb 26, 2021 in Selenium by Hamza

edited Mar 5, 2025 10,825 views
0 votes
1 answer

Error showing up, Unable to click the second page and get title. Any Solution?

Hi, @Faha, As you access the URL http://demo.automationtesting.in/Windows.html there ...READ MORE

answered Nov 25, 2020 in Selenium by Gitika
• 65,730 points
5,126 views
0 votes
1 answer
0 votes
1 answer
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