Chomedriver “The driver is not executable”
问题 I have my chromedriver and chromedriver.exe right in project folder. I'm creating instance of driver with this code. ChromeOptions options = new ChromeOptions(); DesiredCapabilities capabilities = DesiredCapabilities.firefox(); LoggingPreferences log_prefs = new LoggingPreferences(); log_prefs.enable(LogType.BROWSER, Level.SEVERE); capabilities.setCapability(CapabilityType.LOGGING_PREFS, log_prefs); System.setProperty("webdriver.chrome.driver", "chromedriver"); driver = new ChromeDriver