通过遵循发现的here
文章,我将建立一个C#/ Selenium自动化框架/测试。在下面的代码中,“测试”是在先前步骤中构建的自定义测试框架。
using NUnit.Framework;
using OpenQA.Selenium;
using Test;
namespace AutomatedTestCases
{
[TestFixture]
public class Sanity : AutomationCore
{
[Test]
public void ClickContactUs()
{
Browsers.getDriver.FindElement(By.Id("menu-item-1296")).Click();
}
}
}
我遇到的问题是我找不到要从“ AutomationCore”继承来的软件包,而Google却使我失望。这是拼写错误还是实际上某个地方有AutomationCore类?
答案 0 :(得分:1)
AutomationCore是您的Sanity类所继承的类。您需要创建该类并首先实现它。