Skip to content

Commit 14bfc04

Browse files
urigdiemol
authored andcommitted
Fixed broken markdown in Spanish Waits page (SeleniumHQ#147) [deploy site]
1 parent e9477bc commit 14bfc04

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

docs_source_files/content/webdriver/waits.es.md

+5-2
Original file line numberDiff line numberDiff line change
@@ -246,6 +246,7 @@ assert el.text == "Hello from JavaScript!"
246246
.Until(drv => drv.FindElement(By.Name("q")));
247247
Debug.Assert(foo.Text.Equals("Hello from JavaScript!"));
248248
}
249+
{{< / code-panel >}}
249250
{{< code-panel language="ruby" >}}
250251
# We don't have a Ruby code sample yet - Help us out and raise a PR
251252
{{< / code-panel >}}
@@ -299,7 +300,8 @@ new WebDriverWait(driver, 3).until(ExpectedConditions.elementToBeClickable(By.xp
299300
WebDriverWait(driver, timeout=3).until(some_condition)
300301
{{< / code-panel >}}
301302
{{< code-panel language="csharp" >}}
302-
new WebDriverWait(driver, TimeSpan.FromSeconds(3)).Until(ExpectedConditions.ElementToBeClickable(By.XPath("//a/h3"))); {{< / code-panel >}}
303+
new WebDriverWait(driver, TimeSpan.FromSeconds(3)).Until(ExpectedConditions.ElementToBeClickable(By.XPath("//a/h3")));
304+
{{< / code-panel >}}
303305
{{< code-panel language="ruby" >}}
304306
wait = Selenium::WebDriver::Wait.new(:timeout => 10)
305307

@@ -460,7 +462,8 @@ using (var driver = new FirefoxDriver())
460462
wait.IgnoreExceptionTypes(typeof(NoSuchElementException));
461463

462464
var foo = wait.Until(drv => drv.FindElement(By.Id("foo")));
463-
} {{< / code-panel >}}
465+
}
466+
{{< / code-panel >}}
464467
{{< code-panel language="ruby" >}}
465468
# We don't have a Ruby code sample yet - Help us out and raise a PR
466469
{{< / code-panel >}}

0 commit comments

Comments
 (0)