forked from florentbr/SeleniumBasic
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTS_Window.cs
More file actions
73 lines (61 loc) · 2.03 KB
/
TS_Window.cs
File metadata and controls
73 lines (61 loc) · 2.03 KB
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
63
64
65
66
67
68
69
70
71
72
73
using Selenium.Tests.Internals;
using A = NUnit.Framework.Assert;
using SetUp = NUnit.Framework.SetUpAttribute;
using TestCase = NUnit.Framework.TestCaseAttribute;
using TestFixture = NUnit.Framework.TestFixtureAttribute;
namespace Selenium.Tests {
[TestFixture(Browser.Firefox)]
[TestFixture(Browser.Opera)]
[TestFixture(Browser.Chrome)]
[TestFixture(Browser.IE)]
[TestFixture(Browser.PhantomJS)]
class TS_Window : BaseBrowsers {
public TS_Window(Browser browser)
: base(browser) { }
[SetUp]
public void SetUp() {
driver.Get("/win1.html");
}
[TestCase]
public void ShouldDisplayMaximized() {
var win = driver.Window;
win.SetSize(800, 600);
win.Maximize();
var size = win.Size();
A.Greater(size.Width, 900);
A.Greater(size.Height, 700);
}
[TestCase]
public void ShouldGetAndSetSize() {
var win = driver.Window;
win.SetSize(800, 600);
var size = win.Size();
A.AreEqual(800, size.Width);
A.AreEqual(600, size.Height);
}
[TestCase]
[IgnoreFixture(Browser.PhantomJS, "Not supported")]
public void ShouldGetAndSetPosition() {
var win = driver.Window;
win.SetPosition(17, 23);
var pos = win.Position();
A.AreEqual(17, pos.X);
A.AreEqual(23, pos.Y);
}
[TestCase]
public void ShouldGetTitle() {
var win = driver.Window;
A.AreEqual("Window1", win.Title);
}
[TestCase]
[IgnoreFixture(Browser.PhantomJS, "Not supported")]
[IgnoreFixture(Browser.Opera, "Issue #14")]
public void ShouldCloseWindow() {
var win1 = driver.Window;
driver.FindElementByLinkText("Window2").Click();
driver.SwitchToNextWindow().Close();
win1.Activate();
A.AreEqual(1, driver.Windows.Count);
}
}
}