forked from SeleniumHQ/selenium
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSeleniumTestCaseBase.cs
62 lines (54 loc) · 1.89 KB
/
SeleniumTestCaseBase.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
using System;
using System.Collections.Generic;
using System.Text;
using NUnit.Framework;
using OpenQA.Selenium;
using System.Reflection;
using System.IO;
using Selenium.Tests.Environment;
namespace Selenium.Tests
{
public class SeleniumTestCaseBase
{
protected ISelenium selenium;
private string baseUrl = "http://localhost:" + EnvironmentManager.Instance.Port.ToString() + "/selenium-server";
[TestFixtureSetUp]
public void FixtureSetUp()
{
//selenium = new WebDriverBackedSelenium(EnvironmentManager.Instance.StartDriver(), baseUrl + "/tests");
//selenium.Start();
selenium = EnvironmentManager.Instance.GetCurrentSelenium();
}
[TestFixtureTearDown]
public void FixtureTearDown()
{
//selenium.Stop();
}
[SetUp]
public void SetUp()
{
string script = ReadSupportScript();
IWebDriver driver = ((WebDriverBackedSelenium)selenium).UnderlyingWebDriver;
driver.Url = baseUrl;
((IJavaScriptExecutor)driver).ExecuteScript(script);
}
private string ReadSupportScript()
{
string scriptFilePath = Path.Combine(GetExecutingDirectory(), "testHelpers.js");
return File.ReadAllText(scriptFilePath);
}
private string GetExecutingDirectory()
{
Assembly executingAssembly = Assembly.GetExecutingAssembly();
string assemblyLocation = executingAssembly.Location;
// If we're shadow copying,. fiddle with
// the codebase instead
if (AppDomain.CurrentDomain.ShadowCopyFiles)
{
Uri uri = new Uri(executingAssembly.CodeBase);
assemblyLocation = uri.LocalPath;
}
return Path.GetDirectoryName(assemblyLocation);
}
}
}