File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
examples/java/src/test/java/dev/selenium/interactions Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -41,7 +41,7 @@ public void informationWithElements() {
4141 driver .switchTo ().frame (iframe );
4242 assertEquals (true , driver .getPageSource ().contains ("We Leave From Here" ));
4343 //Now we can type text into email field
44- WebElement emailE = driver .findElement (By .id ("email" ));
44+ WebElement emailE = driver .findElement (By .id ("email" ));
4545 emailE .
sendKeys (
"[email protected] " );
4646 emailE .clear ();
4747 driver .switchTo ().defaultContent ();
@@ -52,7 +52,7 @@ public void informationWithElements() {
5252 //Switch to the frame
5353 driver .switchTo ().frame (iframe );
5454 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" ));
5656 //Now we can type text into email field
5757 email .
sendKeys (
"[email protected] " );
5858 email .clear ();
@@ -71,4 +71,4 @@ public void informationWithElements() {
7171 driver .quit ();
7272 }
7373
74- }
74+ }
You can’t perform that action at this time.
0 commit comments