File tree 1 file changed +3
-3
lines changed
examples/java/src/test/java/dev/selenium/interactions
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -41,7 +41,7 @@ public void informationWithElements() {
41
41
driver .switchTo ().frame (iframe );
42
42
assertEquals (true , driver .getPageSource ().contains ("We Leave From Here" ));
43
43
//Now we can type text into email field
44
- WebElement emailE = driver .findElement (By .id ("email" ));
44
+ WebElement emailE = driver .findElement (By .id ("email" ));
45
45
emailE .
sendKeys (
"[email protected] " );
46
46
emailE .clear ();
47
47
driver .switchTo ().defaultContent ();
@@ -52,7 +52,7 @@ public void informationWithElements() {
52
52
//Switch to the frame
53
53
driver .switchTo ().frame (iframe );
54
54
assertEquals (true , driver .getPageSource ().contains ("We Leave From Here" ));
55
- WebElement email = driver .findElement (By .id ("email" ));
55
+ WebElement email = driver .findElement (By .id ("email" ));
56
56
//Now we can type text into email field
57
57
email .
sendKeys (
"[email protected] " );
58
58
email .clear ();
@@ -71,4 +71,4 @@ public void informationWithElements() {
71
71
driver .quit ();
72
72
}
73
73
74
- }
74
+ }
You can’t perform that action at this time.
0 commit comments