mirror of
https://github.com/Radarr/Radarr.git
synced 2024-11-05 18:42:42 +01:00
Web drivers are now created only once per fixture.
This commit is contained in:
parent
9be08b810e
commit
55b9dc2a9b
@ -37,13 +37,13 @@ static AutomationTestBase()
|
||||
[SetUp]
|
||||
public void AutomationSetup()
|
||||
{
|
||||
Driver = new FirefoxDriver();
|
||||
|
||||
}
|
||||
|
||||
[TearDown]
|
||||
public void AutomationTearDown()
|
||||
{
|
||||
Driver.Close();
|
||||
|
||||
|
||||
if (!Directory.Exists(Directory.GetCurrentDirectory() + "\\Screenshots"))
|
||||
{
|
||||
@ -64,12 +64,16 @@ public void AutomationTestFixtureSetup()
|
||||
StopNzbDrone();
|
||||
ResetUserData();
|
||||
StartNzbDrone();
|
||||
Driver = new FirefoxDriver();
|
||||
}
|
||||
|
||||
[TestFixtureTearDown]
|
||||
public void AutomationTestFixtureTearDown()
|
||||
{
|
||||
Driver.Close();
|
||||
StopNzbDrone();
|
||||
|
||||
File.Copy(Path.Combine(testFolder, "nzbdrone.log"), Path.Combine(Directory.GetCurrentDirectory(), "nzbdrone.log"), true);
|
||||
}
|
||||
|
||||
|
||||
@ -77,7 +81,7 @@ protected void CaptureScreen()
|
||||
{
|
||||
var method = new StackFrame(1).GetMethod().Name;
|
||||
|
||||
var fileName = String.Format("{0}__{1}.png", this.GetType().Name, method);
|
||||
var fileName = String.Format("{0}__{1}.png", GetType().Name, method);
|
||||
|
||||
((ITakesScreenshot)Driver).GetScreenshot().SaveAsFile(fileName, ImageFormat.Png);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user