This question is locked. New answers and comments are not allowed.
I installed the software, worked just fine, recorded a 6 step test, that worked really well, but when I converted the code to teststeps to code I got the following error:
Error 1 The type or namespace name 'Pages' could not be found (are you missing a using directive or an assembly reference?) C:\Projects\xxxx\xxxx\WebAiiTest1.aii.cs 62 17 xxxxTest
In an autogenerated region:
#region [ Dynamic Pages Reference ]
private Pages _pages;
/// <summary>
/// Gets the Pages object that has references
/// to all the elements, frames or regions
/// in this project.
/// </summary>
public Pages Pages
{
get
{
if (_pages == null)
{
_pages = new Pages(Manager.Current);
}
return _pages;
}
}
#endregion
I have added no code to the solution yet, and there were no errors when I just ran the tests "quick execute test against selected browser".
The following references are present in the project:
Any clues?
Error 1 The type or namespace name 'Pages' could not be found (are you missing a using directive or an assembly reference?) C:\Projects\xxxx\xxxx\WebAiiTest1.aii.cs 62 17 xxxxTest
In an autogenerated region:
#region [ Dynamic Pages Reference ]
private Pages _pages;
/// <summary>
/// Gets the Pages object that has references
/// to all the elements, frames or regions
/// in this project.
/// </summary>
public Pages Pages
{
get
{
if (_pages == null)
{
_pages = new Pages(Manager.Current);
}
return _pages;
}
}
#endregion
I have added no code to the solution yet, and there were no errors when I just ran the tests "quick execute test against selected browser".
The following references are present in the project:
- ArtOfTest.WebAii
- ArtOfTest.WebAii.Design
- Microsoft.VisualStudil.QualityTools.UnitTestFramework
- System
- System.Core
- System.Windows.Forms
- Telerik.Web.UI.Translators
Any clues?