Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
40 changes: 35 additions & 5 deletions docs_source_files/content/webdriver/web_element.de.md
Original file line number Diff line number Diff line change
Expand Up @@ -781,16 +781,40 @@ of an element in the current browsing context.

{{< code-tab >}}
{{< code-panel language="java" >}}
// Please provide a pr for the code sample

// Navigate to Url
driver.get("https://www.example.com");

// Retrieves the computed style property 'color' of linktext
String cssValue = driver.findElement(By.linkText("More information...")).getCssValue("color");

{{< / code-panel >}}
{{< code-panel language="python" >}}
// Please provide a pr for the code sample

# Navigate to Url
driver.get('https://www.example.com')

# Retrieves the computed style property 'color' of linktext
cssValue = driver.findElement(By.LINK_TEXT, "More information...").value_of_css_property('color')

{{< / code-panel >}}
{{< code-panel language="csharp" >}}
// Please provide a pr for the code sample

// Navigate to Url
driver.Navigate().GoToUrl("https://www.example.com");

// Retrieves the computed style property 'color' of linktext
String cssValue = driver.FindElement(By.LinkText("More information...")).GetCssValue("color");

{{< / code-panel >}}
{{< code-panel language="ruby" >}}
// Please provide a pr for the code sample

# Navigate to Url
driver.get 'https://www.example.com'

# Retrieves the computed style property 'color' of linktext
cssValue = driver.find_element(:link_text, 'More information...').css_value('color')

{{< / code-panel >}}
{{< code-panel language="javascript" >}}
// Navigate to Url
Expand All @@ -800,6 +824,12 @@ await driver.get('https://www.example.com');
let cssValue = await driver.findElement(By.linkText("More information...")).getCssValue('color');
{{< / code-panel >}}
{{< code-panel language="kotlin" >}}
// Please provide a pr for the code sample

// Navigate to Url
driver.get("https://www.example.com")

// Retrieves the computed style property 'color' of linktext
val cssValue = driver.findElement(By.linkText("More information...")).getCssValue("color")

{{< / code-panel >}}
{{< / code-tab >}}
44 changes: 38 additions & 6 deletions docs_source_files/content/webdriver/web_element.en.md
Original file line number Diff line number Diff line change
Expand Up @@ -775,25 +775,57 @@ of an element in the current browsing context.

{{< code-tab >}}
{{< code-panel language="java" >}}
// Please provide a pr for the code sample

// Navigate to Url
driver.get("https://www.example.com");

// Retrieves the computed style property 'color' of linktext
String cssValue = driver.findElement(By.linkText("More information...")).getCssValue("color");

{{< / code-panel >}}
{{< code-panel language="python" >}}
// Please provide a pr for the code sample

# Navigate to Url
driver.get('https://www.example.com')

# Retrieves the computed style property 'color' of linktext
cssValue = driver.findElement(By.LINK_TEXT, "More information...").value_of_css_property('color')

{{< / code-panel >}}
{{< code-panel language="csharp" >}}
// Please provide a pr for the code sample

// Navigate to Url
driver.Navigate().GoToUrl("https://www.example.com");

// Retrieves the computed style property 'color' of linktext
String cssValue = driver.FindElement(By.LinkText("More information...")).GetCssValue("color");

{{< / code-panel >}}
{{< code-panel language="ruby" >}}
// Please provide a pr for the code sample

# Navigate to Url
driver.get 'https://www.example.com'

# Retrieves the computed style property 'color' of linktext
cssValue = driver.find_element(:link_text, 'More information...').css_value('color')

{{< / code-panel >}}
{{< code-panel language="javascript" >}}

// Navigate to Url
await driver.get('https://www.example.com');

// Retrieves the computed style property 'color' of linktext
let cssValue = await driver.findElement(By.linkText("More information...")).getCssValue('color');

{{< / code-panel >}}
{{< code-panel language="kotlin" >}}
// Please provide a pr for the code sample

// Navigate to Url
driver.get("https://www.example.com")

// Retrieves the computed style property 'color' of linktext
val cssValue = driver.findElement(By.linkText("More information...")).getCssValue("color")

{{< / code-panel >}}
{{< / code-tab >}}
40 changes: 35 additions & 5 deletions docs_source_files/content/webdriver/web_element.es.md
Original file line number Diff line number Diff line change
Expand Up @@ -786,16 +786,40 @@ of an element in the current browsing context.

{{< code-tab >}}
{{< code-panel language="java" >}}
// Please provide a pr for the code sample

// Navigate to Url
driver.get("https://www.example.com");

// Retrieves the computed style property 'color' of linktext
String cssValue = driver.findElement(By.linkText("More information...")).getCssValue("color");

{{< / code-panel >}}
{{< code-panel language="python" >}}
// Please provide a pr for the code sample

# Navigate to Url
driver.get('https://www.example.com')

# Retrieves the computed style property 'color' of linktext
cssValue = driver.findElement(By.LINK_TEXT, "More information...").value_of_css_property('color')

{{< / code-panel >}}
{{< code-panel language="csharp" >}}
// Please provide a pr for the code sample

// Navigate to Url
driver.Navigate().GoToUrl("https://www.example.com");

// Retrieves the computed style property 'color' of linktext
String cssValue = driver.FindElement(By.LinkText("More information...")).GetCssValue("color");

{{< / code-panel >}}
{{< code-panel language="ruby" >}}
// Please provide a pr for the code sample

# Navigate to Url
driver.get 'https://www.example.com'

# Retrieves the computed style property 'color' of linktext
cssValue = driver.find_element(:link_text, 'More information...').css_value('color')

{{< / code-panel >}}
{{< code-panel language="javascript" >}}
// Navigate to Url
Expand All @@ -805,6 +829,12 @@ await driver.get('https://www.example.com');
let cssValue = await driver.findElement(By.linkText("More information...")).getCssValue('color');
{{< / code-panel >}}
{{< code-panel language="kotlin" >}}
// Please provide a pr for the code sample

// Navigate to Url
driver.get("https://www.example.com")

// Retrieves the computed style property 'color' of linktext
val cssValue = driver.findElement(By.linkText("More information...")).getCssValue("color")

{{< / code-panel >}}
{{< / code-tab >}}
40 changes: 35 additions & 5 deletions docs_source_files/content/webdriver/web_element.fr.md
Original file line number Diff line number Diff line change
Expand Up @@ -775,16 +775,40 @@ of an element in the current browsing context.

{{< code-tab >}}
{{< code-panel language="java" >}}
// Please provide a pr for the code sample

// Navigate to Url
driver.get("https://www.example.com");

// Retrieves the computed style property 'color' of linktext
String cssValue = driver.findElement(By.linkText("More information...")).getCssValue("color");

{{< / code-panel >}}
{{< code-panel language="python" >}}
// Please provide a pr for the code sample

# Navigate to Url
driver.get('https://www.example.com')

# Retrieves the computed style property 'color' of linktext
cssValue = driver.findElement(By.LINK_TEXT, "More information...").value_of_css_property('color')

{{< / code-panel >}}
{{< code-panel language="csharp" >}}
// Please provide a pr for the code sample

// Navigate to Url
driver.Navigate().GoToUrl("https://www.example.com");

// Retrieves the computed style property 'color' of linktext
String cssValue = driver.FindElement(By.LinkText("More information...")).GetCssValue("color");

{{< / code-panel >}}
{{< code-panel language="ruby" >}}
// Please provide a pr for the code sample

# Navigate to Url
driver.get 'https://www.example.com'

# Retrieves the computed style property 'color' of linktext
cssValue = driver.find_element(:link_text, 'More information...').css_value('color')

{{< / code-panel >}}
{{< code-panel language="javascript" >}}
// Navigate to Url
Expand All @@ -794,6 +818,12 @@ await driver.get('https://www.example.com');
let cssValue = await driver.findElement(By.linkText("More information...")).getCssValue('color');
{{< / code-panel >}}
{{< code-panel language="kotlin" >}}
// Please provide a pr for the code sample

// Navigate to Url
driver.get("https://www.example.com")

// Retrieves the computed style property 'color' of linktext
val cssValue = driver.findElement(By.linkText("More information...")).getCssValue("color")

{{< / code-panel >}}
{{< / code-tab >}}
40 changes: 35 additions & 5 deletions docs_source_files/content/webdriver/web_element.ja.md
Original file line number Diff line number Diff line change
Expand Up @@ -773,16 +773,40 @@ of an element in the current browsing context.

{{< code-tab >}}
{{< code-panel language="java" >}}
// Please provide a pr for the code sample

// Navigate to Url
driver.get("https://www.example.com");

// Retrieves the computed style property 'color' of linktext
String cssValue = driver.findElement(By.linkText("More information...")).getCssValue("color");

{{< / code-panel >}}
{{< code-panel language="python" >}}
// Please provide a pr for the code sample

# Navigate to Url
driver.get('https://www.example.com')

# Retrieves the computed style property 'color' of linktext
cssValue = driver.findElement(By.LINK_TEXT, "More information...").value_of_css_property('color')

{{< / code-panel >}}
{{< code-panel language="csharp" >}}
// Please provide a pr for the code sample

// Navigate to Url
driver.Navigate().GoToUrl("https://www.example.com");

// Retrieves the computed style property 'color' of linktext
String cssValue = driver.FindElement(By.LinkText("More information...")).GetCssValue("color");

{{< / code-panel >}}
{{< code-panel language="ruby" >}}
// Please provide a pr for the code sample

# Navigate to Url
driver.get 'https://www.example.com'

# Retrieves the computed style property 'color' of linktext
cssValue = driver.find_element(:link_text, 'More information...').css_value('color')

{{< / code-panel >}}
{{< code-panel language="javascript" >}}
// Navigate to Url
Expand All @@ -792,6 +816,12 @@ await driver.get('https://www.example.com');
let cssValue = await driver.findElement(By.linkText("More information...")).getCssValue('color');
{{< / code-panel >}}
{{< code-panel language="kotlin" >}}
// Please provide a pr for the code sample

// Navigate to Url
driver.get("https://www.example.com")

// Retrieves the computed style property 'color' of linktext
val cssValue = driver.findElement(By.linkText("More information...")).getCssValue("color")

{{< / code-panel >}}
{{< / code-tab >}}
40 changes: 35 additions & 5 deletions docs_source_files/content/webdriver/web_element.ko.md
Original file line number Diff line number Diff line change
Expand Up @@ -781,16 +781,40 @@ of an element in the current browsing context.

{{< code-tab >}}
{{< code-panel language="java" >}}
// Please provide a pr for the code sample

// Navigate to Url
driver.get("https://www.example.com");

// Retrieves the computed style property 'color' of linktext
String cssValue = driver.findElement(By.linkText("More information...")).getCssValue("color");

{{< / code-panel >}}
{{< code-panel language="python" >}}
// Please provide a pr for the code sample

# Navigate to Url
driver.get('https://www.example.com')

# Retrieves the computed style property 'color' of linktext
cssValue = driver.findElement(By.LINK_TEXT, "More information...").value_of_css_property('color')

{{< / code-panel >}}
{{< code-panel language="csharp" >}}
// Please provide a pr for the code sample

// Navigate to Url
driver.Navigate().GoToUrl("https://www.example.com");

// Retrieves the computed style property 'color' of linktext
String cssValue = driver.FindElement(By.LinkText("More information...")).GetCssValue("color");

{{< / code-panel >}}
{{< code-panel language="ruby" >}}
// Please provide a pr for the code sample

# Navigate to Url
driver.get 'https://www.example.com'

# Retrieves the computed style property 'color' of linktext
cssValue = driver.find_element(:link_text, 'More information...').css_value('color')

{{< / code-panel >}}
{{< code-panel language="javascript" >}}
// Navigate to Url
Expand All @@ -800,6 +824,12 @@ await driver.get('https://www.example.com');
let cssValue = await driver.findElement(By.linkText("More information...")).getCssValue('color');
{{< / code-panel >}}
{{< code-panel language="kotlin" >}}
// Please provide a pr for the code sample

// Navigate to Url
driver.get("https://www.example.com")

// Retrieves the computed style property 'color' of linktext
val cssValue = driver.findElement(By.linkText("More information...")).getCssValue("color")

{{< / code-panel >}}
{{< / code-tab >}}
Loading