I'm confused. I've just downloaded Telerik Testing Framework 2013 Q1, I create a test project in VS 2012, add a VsUnit test item to the project, and set up the code as per the VS Test documentation:
http://www.telerik.com/automated-testing-tools/support/documentation/user-guide/getting-started/using-visual-studio-team-test.aspx
However, I then see a warning message telling me that BrowserType is obsolete. Indeed ArtOfTest.WebAii.Core.BrowserType has the following attribute:
[Obsolete("Use Telerik.TestStudio.Shared.Communication.Enums.BrowserType instead. Use this enum only for deserializing legacy results.")]
What am I doing wrong in that the docs tell me I might do the following, but I'd be using an obsolete enum.
I am not using the full Test Studio, I just want to use the Testing Framework to automate the browser for a few tests.
Thanks.
http://www.telerik.com/automated-testing-tools/support/documentation/user-guide/getting-started/using-visual-studio-team-test.aspx
However, I then see a warning message telling me that BrowserType is obsolete. Indeed ArtOfTest.WebAii.Core.BrowserType has the following attribute:
[Obsolete("Use Telerik.TestStudio.Shared.Communication.Enums.BrowserType instead. Use this enum only for deserializing legacy results.")]
What am I doing wrong in that the docs tell me I might do the following, but I'd be using an obsolete enum.
Settings settings = GetSettings();
settings.DefaultBrowser = BrowserType.FireFox;
Initialize(settings,
new
TestContextWriteLine(
this
.TestContext.WriteLine));
I am not using the full Test Studio, I just want to use the Testing Framework to automate the browser for a few tests.
Thanks.