我无法在 Coded UI 中使用 ConfigurationManager.AppSettings
I'm unable to use ConfigurationManager.AppSettings in Coded UI
我在 VS2015 Ultimate 中的代码是:
BrowserWindow browser = BrowserWindow.Launch(ConfigurationManager.AppSettings["URL"]);
在使用这段代码时,我在代码中遇到了错误,当我将鼠标悬停在它上面时,我得到了这个 'object' does not contain a definition for "AppSettings" and no extension method 'AppSettings' accepting a first argument of type object could be found(are you missing a using directive or an assembly reference?)
。
但是我提供了using System.Configuration;
。并且这段代码在 VS2012 Ultimate 中完美运行。谁能为我提供这个问题的解决方案?
我得到了解决方案,我使用了这段代码
BrowserWindow.Launch(System.Configuration.ConfigurationManager.AppSettings["URL"]);
此外,我在参考文献中添加了 System.configuration
。然后它起作用了。
我在 VS2015 Ultimate 中的代码是:
BrowserWindow browser = BrowserWindow.Launch(ConfigurationManager.AppSettings["URL"]);
在使用这段代码时,我在代码中遇到了错误,当我将鼠标悬停在它上面时,我得到了这个 'object' does not contain a definition for "AppSettings" and no extension method 'AppSettings' accepting a first argument of type object could be found(are you missing a using directive or an assembly reference?)
。
但是我提供了using System.Configuration;
。并且这段代码在 VS2012 Ultimate 中完美运行。谁能为我提供这个问题的解决方案?
我得到了解决方案,我使用了这段代码
BrowserWindow.Launch(System.Configuration.ConfigurationManager.AppSettings["URL"]);
此外,我在参考文献中添加了 System.configuration
。然后它起作用了。