forked from florentbr/SeleniumBasic
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTS_Frame.cs
More file actions
83 lines (61 loc) · 2.76 KB
/
TS_Frame.cs
File metadata and controls
83 lines (61 loc) · 2.76 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
74
75
76
77
78
79
80
81
82
83
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_Frame : BaseBrowsers {
public TS_Frame(Browser browser)
: base(browser) { }
[SetUp]
public void SetUp() {
driver.Get("/frame1.html");
}
[TestCase]
public void ShouldSwitchToFrameByIdName() {
A.AreEqual("Frame1", driver.FindElementById("info").Text());
driver.SwitchToFrame("frm2"); //by name
A.AreEqual("Frame2", driver.FindElementById("info").Text());
driver.SwitchToFrame("frm3"); //by id
A.AreEqual("Frame3", driver.FindElementById("info").Text());
driver.SwitchToDefaultContent();
A.AreEqual("Frame1", driver.FindElementById("info").Text());
}
[TestCase]
public void ShouldSwitchToFrameByIndex() {
A.AreEqual("Frame1", driver.FindElementById("info").Text());
driver.SwitchToFrame(0);
A.AreEqual("Frame2", driver.FindElementById("info").Text());
driver.SwitchToFrame(0);
A.AreEqual("Frame3", driver.FindElementById("info").Text());
driver.SwitchToDefaultContent();
A.AreEqual("Frame1", driver.FindElementById("info").Text());
}
[TestCase]
public void ShouldSwitchToFrameByWebElement() {
A.AreEqual("Frame1", driver.FindElementById("info").Text());
driver.SwitchToFrame(driver.FindElementByName("frm2"));
A.AreEqual("Frame2", driver.FindElementById("info").Text());
driver.SwitchToFrame(driver.FindElementById("frm3"));
A.AreEqual("Frame3", driver.FindElementById("info").Text());
driver.SwitchToDefaultContent();
A.AreEqual("Frame1", driver.FindElementById("info").Text());
}
[TestCase]
[IgnoreFixture(Browser.PhantomJS, "Not supported")]
public void ShouldSwitchToParentFrame() {
A.AreEqual("Frame1", driver.FindElementById("info").Text());
driver.SwitchToFrame(driver.FindElementByName("frm2"));
A.AreEqual("Frame2", driver.FindElementById("info").Text());
driver.SwitchToFrame(driver.FindElementById("frm3"));
A.AreEqual("Frame3", driver.FindElementById("info").Text());
driver.SwitchToParentFrame();
A.AreEqual("Frame2", driver.FindElementById("info").Text());
}
}
}