Skip to content

Commit 3338405

Browse files
AndreyJVMVietND96
andauthored
Adding spaces -> FramesTest.java (#2124)
[deploy site] Co-authored-by: Viet Nguyen Duc <[email protected]>
1 parent 3ff36f0 commit 3338405

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

examples/java/src/test/java/dev/selenium/interactions/FramesTest.java

+3-3
Original file line numberDiff line numberDiff 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+
}

0 commit comments

Comments
 (0)