You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
HI!
I'm trying to delete cookies after each test and added it to [TearDown]
[TestFixture]
public class CartTests : FluentTest
{
[TestFixtureSetUp]
public void SampleTests()
{
new DriverSetup();
}
[TearDown]
public void TearDown()
{
this.Provider.Manage().Cookies.DeleteAllCookies();
}
But after on test is completed another begins with without clearing cookies.
Maybe I'm doing something wrong?
Please, help me
The text was updated successfully, but these errors were encountered:
HI!
I'm trying to delete cookies after each test and added it to [TearDown]
[TestFixture]
public class CartTests : FluentTest
{
But after on test is completed another begins with without clearing cookies.
Maybe I'm doing something wrong?
Please, help me
The text was updated successfully, but these errors were encountered: