我如何在C#中设置系统属性。
在Java中,我可以使用:
System.setProperty("webdriver.chrome.driver","/path/to/where/you/ve/put/chromedriver.exe");
如何在C#中做到这一点?
最佳答案
尝试System.Environment.SetEnvironmentVariable("webdriver.chrome.driver",@"/path/to/where/you/ve/put/chromedriver.exe")
-MSDN
关于c# - 如何在C#中设置系统属性,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/7180450/