From 7f8f4adaa093fa8579488b65d043696c93313437 Mon Sep 17 00:00:00 2001 From: Andrey Vorobev <110294988+AndreyJVM@users.noreply.github.com> Date: Tue, 7 Jan 2025 22:11:32 +0300 Subject: [PATCH] Adding spaces -> FramesTest.java Hi, Adding spaces --- .../src/test/java/dev/selenium/interactions/FramesTest.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/examples/java/src/test/java/dev/selenium/interactions/FramesTest.java b/examples/java/src/test/java/dev/selenium/interactions/FramesTest.java index be57fcf589b8..b6ff81ae052f 100644 --- a/examples/java/src/test/java/dev/selenium/interactions/FramesTest.java +++ b/examples/java/src/test/java/dev/selenium/interactions/FramesTest.java @@ -41,7 +41,7 @@ public void informationWithElements() { driver.switchTo().frame(iframe); assertEquals(true, driver.getPageSource().contains("We Leave From Here")); //Now we can type text into email field - WebElement emailE= driver.findElement(By.id("email")); + WebElement emailE = driver.findElement(By.id("email")); emailE.sendKeys("admin@selenium.dev"); emailE.clear(); driver.switchTo().defaultContent(); @@ -52,7 +52,7 @@ public void informationWithElements() { //Switch to the frame driver.switchTo().frame(iframe); assertEquals(true, driver.getPageSource().contains("We Leave From Here")); - WebElement email=driver.findElement(By.id("email")); + WebElement email = driver.findElement(By.id("email")); //Now we can type text into email field email.sendKeys("admin@selenium.dev"); email.clear(); @@ -71,4 +71,4 @@ public void informationWithElements() { driver.quit(); } -} \ No newline at end of file +}