Skip to content

Commit f2c2a0e

Browse files
authored
Missing closing parentheses (SeleniumHQ#1165)[deploy site]
* Missing closing parentheses * Other languages.
1 parent f613649 commit f2c2a0e

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

website_and_docs/content/documentation/webdriver/elements/information.en.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ is_button_visible = driver.find_element(By.CSS_SELECTOR, "[name='login']").is_di
4444
driver.Navigate().GoToUrl("https://google.com");
4545

4646
// Get bool value for is element displayed
47-
bool displayedLogo = driver.FindElement(By.CssSelector("img[alt='Google']").Displayed;
47+
bool displayedLogo = driver.FindElement(By.CssSelector("img[alt='Google']")).Displayed;
4848
{{< /tab >}}
4949
{{< tab header="Ruby" >}}
5050
# Help us with a PR for code sample

website_and_docs/content/documentation/webdriver/elements/information.ja.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ is_button_visible = driver.find_element(By.CSS_SELECTOR, "[name='login']").is_di
4444
driver.Navigate().GoToUrl("https://google.com");
4545

4646
// Get bool value for is element displayed
47-
bool displayedLogo = driver.FindElement(By.CssSelector("img[alt='Google']").Displayed;
47+
bool displayedLogo = driver.FindElement(By.CssSelector("img[alt='Google']")).Displayed;
4848
{{< /tab >}}
4949
{{< tab header="Ruby" >}}
5050
# Help us with a PR for code sample

website_and_docs/content/documentation/webdriver/elements/information.pt-br.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ is_button_visible = driver.find_element(By.CSS_SELECTOR, "[name='login']").is_di
4545
driver.Navigate().GoToUrl("https://google.com");
4646

4747
// Get bool value for is element displayed
48-
bool displayedLogo = driver.FindElement(By.CssSelector("img[alt='Google']").Displayed;
48+
bool displayedLogo = driver.FindElement(By.CssSelector("img[alt='Google']")).Displayed;
4949
{{< /tab >}}
5050
{{< tab header="Ruby" >}}
5151
# Help us with a PR for code sample

website_and_docs/content/documentation/webdriver/elements/information.zh-cn.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ is_button_visible = driver.find_element(By.CSS_SELECTOR, "[name='login']").is_di
4444
driver.Navigate().GoToUrl("https://google.com");
4545

4646
// Get bool value for is element displayed
47-
bool displayedLogo = driver.FindElement(By.CssSelector("img[alt='Google']").Displayed;
47+
bool displayedLogo = driver.FindElement(By.CssSelector("img[alt='Google']")).Displayed;
4848
{{< /tab >}}
4949
{{< tab header="Ruby" >}}
5050
# Help us with a PR for code sample

0 commit comments

Comments
 (0)