From a29b41de9f84b014bd6a9a37e97eca9460855c04 Mon Sep 17 00:00:00 2001 From: Hirok Sarker Date: Mon, 28 Oct 2019 21:33:45 +0600 Subject: [PATCH 1/4] Completing the translation completed C# Completing the translation completed C# --- .../working_with_select_elements.es.md | 585 +++++++++--------- .../working_with_select_elements.fr.md | 583 ++++++++--------- .../working_with_select_elements.ja.md | 583 ++++++++--------- .../working_with_select_elements.nl.md | 583 ++++++++--------- .../working_with_select_elements.zh-cn.md | 581 ++++++++--------- 5 files changed, 1505 insertions(+), 1410 deletions(-) diff --git a/docs_source_files/content/support_packages/working_with_select_elements.es.md b/docs_source_files/content/support_packages/working_with_select_elements.es.md index 23e87d824772..0785c7ac8eff 100644 --- a/docs_source_files/content/support_packages/working_with_select_elements.es.md +++ b/docs_source_files/content/support_packages/working_with_select_elements.es.md @@ -1,284 +1,303 @@ ---- -title: "Trabajando con elementos select" -weight: 3 ---- - -{{% notice info %}} - Page being translated from -English to Spanish. Do you speak Spanish? Help us to translate -it by sending us pull requests! -{{% /notice %}} - - -Select elements can require quite a bit of boiler plate code to automate. -To reduce this and make your tests cleaner, there is a -`Select` class in the Selenium support package. -To use it, you will need the following import statement: - -{{< code-tab >}} - {{< code-panel language="java" >}} -import org.openqa.selenium.support.ui.Select; - {{< / code-panel >}} - {{< code-panel language="python" >}} -from selenium.webdriver.support.select import Select - {{< / code-panel >}} - {{< code-panel language="csharp" >}} -// We don't have a C# code sample yet - Help us out and raise a PR - {{< / code-panel >}} - {{< code-panel language="ruby" >}} -include Selenium::WebDriver::Support - {{< / code-panel >}} - {{< code-panel language="javascript" >}} -// We don't have a JavaScript code sample yet - Help us out and raise a PR - {{< / code-panel >}} - {{< code-panel language="kotlin" >}} -import org.openqa.selenium.support.ui.Select - {{< / code-panel >}} -{{< / code-tab >}} - -You are then able to create a Select object using a WebElement that -references a `` element. -First of all, there are different ways of selecting an option -from the ` - - - - -``` - -There are three ways to select the first option from the above element: - -{{< code-tab >}} - {{< code-panel language="java" >}} -// Select an