I have this code to set system properties:
System.setProperty("webdriver.chrome.driver", "src\\main\\resources\\driver\\chromedriver.exe");
Is it possible to store chromedriver executable within GitHub and use it in different projects? Something like this:
System.setProperty("webdriver.chrome.driver", "https://path_to_file/chromedriver.exe");