我无法在编码用户界面中使用ConfigurationManager.AppSettings

时间:2018-11-21 14:57:52

标签: visual-studio-2015 coded-ui-tests

我在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中完美运行。谁能为我提供解决此问题的方法?

1 个答案:

答案 0 :(得分:0)

我找到了解决方案,我使用了这段代码

BrowserWindow.Launch(System.Configuration.ConfigurationManager.AppSettings["URL"]);

此外,我在参考文献中添加了System.configuration。然后成功了。