2 回答
TA贡献1803条经验 获得超6个赞
您可以在 chromeoptions 中使用 user-data-dir 来保存配置文件数据,您可以在每次测试的初始化时检查您是否已登录。
例子:
public void Setup ( )
{
string ProfileDirect=Directory.GetCurrentDirectory()+"\\MyProfile";
if ( !Directory.Exists ( ProfileDirect ) )
{
//create data folder if not exist
Directory.CreateDirectory ( ProfileDirect );
}
// Create new option with data folder
var options=new ChromeOptions();
options.AddArgument ( @"user-data-dir="+ProfileDirect );
// Instance new Driver , with our current profile data.
Driver=new ChromeDriver(options);
if ( !IsLoggedIn ( ) )
{
Login ( );
}
}
public bool IsLoggedIn ( )
{
// Check if button logout is visible
return Driver.FindElement(By.XPath ( "//a[contains(@href,'logout')]" ))!=null;
}
public void Login ( )
{
//Some code to login
}
第一次执行后,cookie 将保存在配置文件文件夹中,第二次执行后,您将被记录,您可以调用每个测试,而无需在每个测试中登录
TA贡献1829条经验 获得超7个赞
将 driver.Url = "http:/yoururlhere
添加到 [SetUp]
,因为它在每次测试之前执行一次
https://nunit.org/docs/2.2.10/fixtureSetup.html
- 2 回答
- 0 关注
- 116 浏览
添加回答
举报