Chomedriver “The driver is not executable”

后端 未结 5 987
时光说笑
时光说笑 2021-01-18 03:08

I have my chromedriver and chromedriver.exe right in project folder. I\'m creating instance of driver with this code.

ChromeOptions options = new ChromeOptio         


        
相关标签:
5条回答
  • 2021-01-18 03:20

    my driver files were in my eclipse project - resources folder. Funny thing - if you go to the driver and check the properties of chromedriver exe file. It did not have the execute permissions. set that and apply and close. I was good to go.

    0 讨论(0)
  • 2021-01-18 03:22

    Make it executable: In CentOs use chmod +x chromedriver

    0 讨论(0)
  • 2021-01-18 03:22

    I ran into this problem as well. The first two answers given worked for me but you can also resolve the permission issue by going to the file (gecko file) that you have in your folder, right click>>Properties and then change the permissions from there.

    0 讨论(0)
  • 2021-01-18 03:32
    1. If User is using Unix that time first checks folder or chromedriver permission.
    2. Permission is missing then use below command.
    3. chmod 777 *
    4. Above command change folder permission and Issue will resolve.
    0 讨论(0)
  • 2021-01-18 03:41

    I had same problems but in my case the everything was working fine but suddenly I started getting this error, so It wouldn't be access problem I thought.

    So for reference to set the chrome driver or firefox driver I was using below snippet.

    Utils.setSystemProperty("webdriver.chrome.driver",
                    classLoader.getSystemResource("utilityJars" + File.separator + "chromedriver_mac").getPath());
    

    I think case the path is in target folder when classes are compiled. So the value of

    classLoader.getSystemResource("utilityJars" + File.separator + "chromedriver_mac").getPath()
    

    is

    /{user.dir}/target/classes/utilityJars/chromedriver_mac

    So may be it had some issue accessing chromedriver on that path, may be not compiled or something not sure, but I just deleted the target folder and re-executed it and it worked.

    0 讨论(0)
提交回复
热议问题