File tree Expand file tree Collapse file tree 4 files changed +4
-4
lines changed
website_and_docs/content/documentation/webdriver/elements Expand file tree Collapse file tree 4 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -310,7 +310,7 @@ String cssValue = driver.findElement(By.linkText("More information...")).getCssV
310
310
driver.get('https://www.example.com ')
311
311
312
312
# Retrieves the computed style property 'color' of linktext
313
- cssValue = driver.findElement (By.LINK_TEXT, "More information...").value_of_css_property('color')
313
+ cssValue = driver.find_element (By.LINK_TEXT, "More information...").value_of_css_property('color')
314
314
315
315
{{< /tab >}}
316
316
{{< tab header="CSharp" >}}
Original file line number Diff line number Diff line change @@ -306,7 +306,7 @@ String cssValue = driver.findElement(By.linkText("More information...")).getCssV
306
306
driver.get('https://www.example.com ')
307
307
308
308
# Retrieves the computed style property 'color' of linktext
309
- cssValue = driver.findElement (By.LINK_TEXT, "More information...").value_of_css_property('color')
309
+ cssValue = driver.find_element (By.LINK_TEXT, "More information...").value_of_css_property('color')
310
310
311
311
{{< /tab >}}
312
312
{{< tab header="CSharp" >}}
Original file line number Diff line number Diff line change @@ -259,7 +259,7 @@ String cssValue = driver.findElement(By.linkText("More information...")).getCssV
259
259
driver.get('https://www.example.com ')
260
260
261
261
# Retrieves the computed style property 'color' of linktext
262
- cssValue = driver.findElement (By.LINK_TEXT, "More information...").value_of_css_property('color')
262
+ cssValue = driver.find_element (By.LINK_TEXT, "More information...").value_of_css_property('color')
263
263
264
264
{{< /tab >}}
265
265
{{< tab header="CSharp" >}}
Original file line number Diff line number Diff line change @@ -296,7 +296,7 @@ String cssValue = driver.findElement(By.linkText("More information...")).getCssV
296
296
driver.get('https://www.example.com ')
297
297
298
298
# Retrieves the computed style property 'color' of linktext
299
- cssValue = driver.findElement (By.LINK_TEXT, "More information...").value_of_css_property('color')
299
+ cssValue = driver.find_element (By.LINK_TEXT, "More information...").value_of_css_property('color')
300
300
301
301
{{< /tab >}}
302
302
{{< tab header="CSharp" >}}
You can’t perform that action at this time.
0 commit comments