Skip to content

Commit 03dcde9

Browse files
committed
Modify: JS comment update [deploy site]
1 parent 06fd6b1 commit 03dcde9

8 files changed

+56
-56
lines changed

docs_source_files/content/support_packages/working_with_colours.de.md

+7-7
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ from selenium.webdriver.support.color import Color
3232
include Selenium::WebDriver::Support
3333
{{< / code-panel >}}
3434
{{< code-panel language="javascript" >}}
35-
// We don't have a JavaScript code sample yet - Help us out and raise a PR
35+
// This feature is not supported in JS bindings
3636
{{< / code-panel >}}
3737
{{< code-panel language="kotlin" >}}import org.openqa.selenium.support.Color{{< / code-panel >}}
3838
{{< / code-tab >}}
@@ -74,7 +74,7 @@ HSL_COLOUR = Color.from_string('hsl(100, 0%, 50%)')
7474
HSLA_COLOUR = Color.from_string('hsla(100, 0%, 50%, 0.5)')
7575
{{< / code-panel >}}
7676
{{< code-panel language="javascript" >}}
77-
// We don't have a JavaScript code sample yet - Help us out and raise a PR
77+
// This feature is not supported in JS bindings
7878
{{< / code-panel >}}
7979
{{< code-panel language="kotlin" >}}
8080
private val HEX_COLOUR = Color.fromString("#2F7ED8")
@@ -111,7 +111,7 @@ CHOCOLATE = Color.from_string('chocolate')
111111
HOTPINK = Color.from_string('hotpink')
112112
{{< / code-panel >}}
113113
{{< code-panel language="javascript" >}}
114-
// We don't have a JavaScript code sample yet - Help us out and raise a PR
114+
// This feature is not supported in JS bindings
115115
{{< / code-panel >}}
116116
{{< code-panel language="kotlin" >}}
117117
private val BLACK = Color.fromString("black")
@@ -138,7 +138,7 @@ TRANSPARENT = Color.from_string('transparent')
138138
TRANSPARENT = Color.from_string('transparent')
139139
{{< / code-panel >}}
140140
{{< code-panel language="javascript" >}}
141-
// We don't have a JavaScript code sample yet - Help us out and raise a PR
141+
// This feature is not supported in JS bindings
142142
{{< / code-panel >}}
143143
{{< code-panel language="kotlin" >}}
144144
private val TRANSPARENT = Color.fromString("transparent")
@@ -170,7 +170,7 @@ login_button_colour = Color.from_string(driver.find_element(id: 'login').css_val
170170
login_button_background_colour = Color.from_string(driver.find_element(id: 'login').css_value('background-color'))
171171
{{< / code-panel >}}
172172
{{< code-panel language="javascript" >}}
173-
// We don't have a JavaScript code sample yet - Help us out and raise a PR
173+
// This feature is not supported in JS bindings
174174
{{< / code-panel >}}
175175
{{< code-panel language="kotlin" >}}
176176
val loginButtonColour = Color.fromString(driver.findElement(By.id("login")).getCssValue("color"))
@@ -196,7 +196,7 @@ assert login_button_background_colour == HOTPINK
196196
assert(login_button_background_colour == HOTPINK)
197197
{{< / code-panel >}}
198198
{{< code-panel language="javascript" >}}
199-
// We don't have a JavaScript code sample yet - Help us out and raise a PR
199+
// This feature is not supported in JS bindings
200200
{{< / code-panel >}}
201201
{{< code-panel language="kotlin" >}}
202202
assert(loginButtonBackgroundColour.equals(HOTPINK))
@@ -226,7 +226,7 @@ assert(login_button_background_colour.rgba == 'rgba(255, 105, 180, 1)')
226226
assert(login_button_background_colour.rgb == 'rgb(255, 105, 180)')
227227
{{< / code-panel >}}
228228
{{< code-panel language="javascript" >}}
229-
// We don't have a JavaScript code sample yet - Help us out and raise a PR
229+
// This feature is not supported in JS bindings
230230
{{< / code-panel >}}
231231
{{< code-panel language="kotlin" >}}
232232
assert(loginButtonBackgroundColour.asHex().equals("#ff69b4"))

docs_source_files/content/support_packages/working_with_colours.en.md

+7-7
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ from selenium.webdriver.support.color import Color
2727
include Selenium::WebDriver::Support
2828
{{< / code-panel >}}
2929
{{< code-panel language="javascript" >}}
30-
// We don't have a JavaScript code sample yet - Help us out and raise a PR
30+
// This feature is not supported in JS bindings
3131
{{< / code-panel >}}
3232
{{< code-panel language="kotlin" >}}import org.openqa.selenium.support.Color{{< / code-panel >}}
3333
{{< / code-tab >}}
@@ -69,7 +69,7 @@ HSL_COLOUR = Color.from_string('hsl(100, 0%, 50%)')
6969
HSLA_COLOUR = Color.from_string('hsla(100, 0%, 50%, 0.5)')
7070
{{< / code-panel >}}
7171
{{< code-panel language="javascript" >}}
72-
// We don't have a JavaScript code sample yet - Help us out and raise a PR
72+
// This feature is not supported in JS bindings
7373
{{< / code-panel >}}
7474
{{< code-panel language="kotlin" >}}
7575
private val HEX_COLOUR = Color.fromString("#2F7ED8")
@@ -106,7 +106,7 @@ CHOCOLATE = Color.from_string('chocolate')
106106
HOTPINK = Color.from_string('hotpink')
107107
{{< / code-panel >}}
108108
{{< code-panel language="javascript" >}}
109-
// We don't have a JavaScript code sample yet - Help us out and raise a PR
109+
// This feature is not supported in JS bindings
110110
{{< / code-panel >}}
111111
{{< code-panel language="kotlin" >}}
112112
private val BLACK = Color.fromString("black")
@@ -133,7 +133,7 @@ TRANSPARENT = Color.from_string('transparent')
133133
TRANSPARENT = Color.from_string('transparent')
134134
{{< / code-panel >}}
135135
{{< code-panel language="javascript" >}}
136-
// We don't have a JavaScript code sample yet - Help us out and raise a PR
136+
// This feature is not supported in JS bindings
137137
{{< / code-panel >}}
138138
{{< code-panel language="kotlin" >}}
139139
private val TRANSPARENT = Color.fromString("transparent")
@@ -165,7 +165,7 @@ login_button_colour = Color.from_string(driver.find_element(id: 'login').css_val
165165
login_button_background_colour = Color.from_string(driver.find_element(id: 'login').css_value('background-color'))
166166
{{< / code-panel >}}
167167
{{< code-panel language="javascript" >}}
168-
// We don't have a JavaScript code sample yet - Help us out and raise a PR
168+
// This feature is not supported in JS bindings
169169
{{< / code-panel >}}
170170
{{< code-panel language="kotlin" >}}
171171
val loginButtonColour = Color.fromString(driver.findElement(By.id("login")).getCssValue("color"))
@@ -191,7 +191,7 @@ assert login_button_background_colour == HOTPINK
191191
assert(login_button_background_colour == HOTPINK)
192192
{{< / code-panel >}}
193193
{{< code-panel language="javascript" >}}
194-
// We don't have a JavaScript code sample yet - Help us out and raise a PR
194+
// This feature is not supported in JS bindings
195195
{{< / code-panel >}}
196196
{{< code-panel language="kotlin" >}}
197197
assert(loginButtonBackgroundColour.equals(HOTPINK))
@@ -221,7 +221,7 @@ assert(login_button_background_colour.rgba == 'rgba(255, 105, 180, 1)')
221221
assert(login_button_background_colour.rgb == 'rgb(255, 105, 180)')
222222
{{< / code-panel >}}
223223
{{< code-panel language="javascript" >}}
224-
// We don't have a JavaScript code sample yet - Help us out and raise a PR
224+
// This feature is not supported in JS bindings
225225
{{< / code-panel >}}
226226
{{< code-panel language="kotlin" >}}
227227
assert(loginButtonBackgroundColour.asHex().equals("#ff69b4"))

docs_source_files/content/support_packages/working_with_colours.es.md

+7-7
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ from selenium.webdriver.support.color import Color
2929
include Selenium::WebDriver::Support
3030
{{< / code-panel >}}
3131
{{< code-panel language="javascript" >}}
32-
// No disponemos del ejemplo de código en Javascript aun - Ayudanos a ello abriendo un PR
32+
// This feature is not supported in JS bindings
3333
{{< / code-panel >}}
3434
{{< code-panel language="kotlin" >}}import org.openqa.selenium.support.Color{{< / code-panel >}}
3535
{{< / code-tab >}}
@@ -72,7 +72,7 @@ HSL_COLOUR = Color.from_string('hsl(100, 0%, 50%)')
7272
HSLA_COLOUR = Color.from_string('hsla(100, 0%, 50%, 0.5)')
7373
{{< / code-panel >}}
7474
{{< code-panel language="javascript" >}}
75-
// No disponemos del ejemplo de código en Javascript aun - Ayudanos a ello abriendo un PR
75+
// This feature is not supported in JS bindings
7676
{{< / code-panel >}}
7777
{{< code-panel language="kotlin" >}}
7878
private val HEX_COLOUR = Color.fromString("#2F7ED8")
@@ -109,7 +109,7 @@ CHOCOLATE = Color.from_string('chocolate')
109109
HOTPINK = Color.from_string('hotpink')
110110
{{< / code-panel >}}
111111
{{< code-panel language="javascript" >}}
112-
// No disponemos del ejemplo de código en Javascript aun - Ayudanos a ello abriendo un PR
112+
// This feature is not supported in JS bindings
113113
{{< / code-panel >}}
114114
{{< code-panel language="kotlin" >}}
115115
private val BLACK = Color.fromString("black")
@@ -136,7 +136,7 @@ TRANSPARENT = Color.from_string('transparent')
136136
TRANSPARENT = Color.from_string('transparent')
137137
{{< / code-panel >}}
138138
{{< code-panel language="javascript" >}}
139-
// No disponemos del ejemplo de código en Javascript aun - Ayudanos a ello abriendo un PR
139+
// This feature is not supported in JS bindings
140140
{{< / code-panel >}}
141141
{{< code-panel language="kotlin" >}}
142142
private val TRANSPARENT = Color.fromString("transparent")
@@ -167,7 +167,7 @@ login_button_colour = Color.from_string(driver.find_element(id: 'login').css_val
167167
login_button_background_colour = Color.from_string(driver.find_element(id: 'login').css_value('background-color'))
168168
{{< / code-panel >}}
169169
{{< code-panel language="javascript" >}}
170-
// No disponemos del ejemplo de código en Javascript aun - Ayudanos a ello abriendo un PR
170+
// This feature is not supported in JS bindings
171171
{{< / code-panel >}}
172172
{{< code-panel language="kotlin" >}}
173173
val loginButtonColour = Color.fromString(driver.findElement(By.id("login")).getCssValue("color"))
@@ -192,7 +192,7 @@ assert login_button_background_colour == HOTPINK
192192
assert(login_button_background_colour == HOTPINK)
193193
{{< / code-panel >}}
194194
{{< code-panel language="javascript" >}}
195-
// No disponemos del ejemplo de código en Javascript aun - Ayudanos a ello abriendo un PR
195+
// This feature is not supported in JS bindings
196196
{{< / code-panel >}}
197197
{{< code-panel language="kotlin" >}}
198198
assert(loginButtonBackgroundColour.equals(HOTPINK))
@@ -222,7 +222,7 @@ assert(login_button_background_colour.rgba == 'rgba(255, 105, 180, 1)')
222222
assert(login_button_background_colour.rgb == 'rgb(255, 105, 180)')
223223
{{< / code-panel >}}
224224
{{< code-panel language="javascript" >}}
225-
// No disponemos del ejemplo de código en Javascript aun - Ayudanos a ello abriendo un PR
225+
// This feature is not supported in JS bindings
226226
{{< / code-panel >}}
227227
{{< code-panel language="kotlin" >}}
228228
assert(loginButtonBackgroundColour.asHex().equals("#ff69b4"))

docs_source_files/content/support_packages/working_with_colours.fr.md

+7-7
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ from selenium.webdriver.support.color import Color
2929
include Selenium::WebDriver::Support
3030
{{< / code-panel >}}
3131
{{< code-panel language="javascript" >}}
32-
// We don't have a JavaScript code sample yet - Help us out and raise a PR
32+
// This feature is not supported in JS bindings
3333
{{< / code-panel >}}
3434
{{< code-panel language="kotlin" >}}import org.openqa.selenium.support.Color{{< / code-panel >}}
3535
{{< / code-tab >}}
@@ -71,7 +71,7 @@ HSL_COLOUR = Color.from_string('hsl(100, 0%, 50%)')
7171
HSLA_COLOUR = Color.from_string('hsla(100, 0%, 50%, 0.5)')
7272
{{< / code-panel >}}
7373
{{< code-panel language="javascript" >}}
74-
// We don't have a JavaScript code sample yet - Help us out and raise a PR
74+
// This feature is not supported in JS bindings
7575
{{< / code-panel >}}
7676
{{< code-panel language="kotlin" >}}
7777
private val HEX_COLOUR = Color.fromString("#2F7ED8")
@@ -108,7 +108,7 @@ CHOCOLATE = Color.from_string('chocolate')
108108
HOTPINK = Color.from_string('hotpink')
109109
{{< / code-panel >}}
110110
{{< code-panel language="javascript" >}}
111-
// We don't have a JavaScript code sample yet - Help us out and raise a PR
111+
// This feature is not supported in JS bindings
112112
{{< / code-panel >}}
113113
{{< code-panel language="kotlin" >}}
114114
private val BLACK = Color.fromString("black")
@@ -135,7 +135,7 @@ TRANSPARENT = Color.from_string('transparent')
135135
TRANSPARENT = Color.from_string('transparent')
136136
{{< / code-panel >}}
137137
{{< code-panel language="javascript" >}}
138-
// We don't have a JavaScript code sample yet - Help us out and raise a PR
138+
// This feature is not supported in JS bindings
139139
{{< / code-panel >}}
140140
{{< code-panel language="kotlin" >}}
141141
private val TRANSPARENT = Color.fromString("transparent")
@@ -167,7 +167,7 @@ login_button_colour = Color.from_string(driver.find_element(id: 'login').css_val
167167
login_button_background_colour = Color.from_string(driver.find_element(id: 'login').css_value('background-color'))
168168
{{< / code-panel >}}
169169
{{< code-panel language="javascript" >}}
170-
// We don't have a JavaScript code sample yet - Help us out and raise a PR
170+
// This feature is not supported in JS bindings
171171
{{< / code-panel >}}
172172
{{< code-panel language="kotlin" >}}
173173
val loginButtonColour = Color.fromString(driver.findElement(By.id("login")).getCssValue("color"))
@@ -192,7 +192,7 @@ assert login_button_background_colour == HOTPINK
192192
assert(login_button_background_colour == HOTPINK)
193193
{{< / code-panel >}}
194194
{{< code-panel language="javascript" >}}
195-
// We don't have a JavaScript code sample yet - Help us out and raise a PR
195+
// This feature is not supported in JS bindings
196196
{{< / code-panel >}}
197197
{{< code-panel language="kotlin" >}}
198198
assert(loginButtonBackgroundColour.equals(HOTPINK))
@@ -222,7 +222,7 @@ assert(login_button_background_colour.rgba == 'rgba(255, 105, 180, 1)')
222222
assert(login_button_background_colour.rgb == 'rgb(255, 105, 180)')
223223
{{< / code-panel >}}
224224
{{< code-panel language="javascript" >}}
225-
// We don't have a JavaScript code sample yet - Help us out and raise a PR
225+
// This feature is not supported in JS bindings
226226
{{< / code-panel >}}
227227
{{< code-panel language="kotlin" >}}
228228
assert(loginButtonBackgroundColour.asHex().equals("#ff69b4"))

docs_source_files/content/support_packages/working_with_colours.ja.md

+7-7
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ from selenium.webdriver.support.color import Color
2626
include Selenium::WebDriver::Support
2727
{{< / code-panel >}}
2828
{{< code-panel language="javascript" >}}
29-
// We don't have a JavaScript code sample yet - Help us out and raise a PR
29+
// This feature is not supported in JS bindings
3030
{{< / code-panel >}}
3131
{{< code-panel language="kotlin" >}}import org.openqa.selenium.support.Color{{< / code-panel >}}
3232
{{< / code-tab >}}
@@ -67,7 +67,7 @@ HSL_COLOUR = Color.from_string('hsl(100, 0%, 50%)')
6767
HSLA_COLOUR = Color.from_string('hsla(100, 0%, 50%, 0.5)')
6868
{{< / code-panel >}}
6969
{{< code-panel language="javascript" >}}
70-
// We don't have a JavaScript code sample yet - Help us out and raise a PR
70+
// This feature is not supported in JS bindings
7171
{{< / code-panel >}}
7272
{{< code-panel language="kotlin" >}}
7373
private val HEX_COLOUR = Color.fromString("#2F7ED8")
@@ -102,7 +102,7 @@ CHOCOLATE = Color.from_string('chocolate')
102102
HOTPINK = Color.from_string('hotpink')
103103
{{< / code-panel >}}
104104
{{< code-panel language="javascript" >}}
105-
// We don't have a JavaScript code sample yet - Help us out and raise a PR
105+
// This feature is not supported in JS bindings
106106
{{< / code-panel >}}
107107
{{< code-panel language="kotlin" >}}
108108
private val BLACK = Color.fromString("black")
@@ -128,7 +128,7 @@ TRANSPARENT = Color.from_string('transparent')
128128
TRANSPARENT = Color.from_string('transparent')
129129
{{< / code-panel >}}
130130
{{< code-panel language="javascript" >}}
131-
// We don't have a JavaScript code sample yet - Help us out and raise a PR
131+
// This feature is not supported in JS bindings
132132
{{< / code-panel >}}
133133
{{< code-panel language="kotlin" >}}
134134
private val TRANSPARENT = Color.fromString("transparent")
@@ -157,7 +157,7 @@ login_button_colour = Color.from_string(driver.find_element(id: 'login').css_val
157157
login_button_background_colour = Color.from_string(driver.find_element(id: 'login').css_value('background-color'))
158158
{{< / code-panel >}}
159159
{{< code-panel language="javascript" >}}
160-
// We don't have a JavaScript code sample yet - Help us out and raise a PR
160+
// This feature is not supported in JS bindings
161161
{{< / code-panel >}}
162162
{{< code-panel language="kotlin" >}}
163163
val loginButtonColour = Color.fromString(driver.findElement(By.id("login")).getCssValue("color"))
@@ -182,7 +182,7 @@ assert login_button_background_colour == HOTPINK
182182
assert(login_button_background_colour == HOTPINK)
183183
{{< / code-panel >}}
184184
{{< code-panel language="javascript" >}}
185-
// We don't have a JavaScript code sample yet - Help us out and raise a PR
185+
// This feature is not supported in JS bindings
186186
{{< / code-panel >}}
187187
{{< code-panel language="kotlin" >}}
188188
assert(loginButtonBackgroundColour.equals(HOTPINK))
@@ -211,7 +211,7 @@ assert(login_button_background_colour.rgba == 'rgba(255, 105, 180, 1)')
211211
assert(login_button_background_colour.rgb == 'rgb(255, 105, 180)')
212212
{{< / code-panel >}}
213213
{{< code-panel language="javascript" >}}
214-
// We don't have a JavaScript code sample yet - Help us out and raise a PR
214+
// This feature is not supported in JS bindings
215215
{{< / code-panel >}}
216216
{{< code-panel language="kotlin" >}}
217217
assert(loginButtonBackgroundColour.asHex().equals("#ff69b4"))

docs_source_files/content/support_packages/working_with_colours.ko.md

+7-7
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ from selenium.webdriver.support.color import Color
3333
include Selenium::WebDriver::Support
3434
{{< / code-panel >}}
3535
{{< code-panel language="javascript" >}}
36-
// We don't have a JavaScript code sample yet - Help us out and raise a PR
36+
// This feature is not supported in JS bindings
3737
{{< / code-panel >}}
3838
{{< code-panel language="kotlin" >}}import org.openqa.selenium.support.Color{{< / code-panel >}}
3939
{{< / code-tab >}}
@@ -75,7 +75,7 @@ HSL_COLOUR = Color.from_string('hsl(100, 0%, 50%)')
7575
HSLA_COLOUR = Color.from_string('hsla(100, 0%, 50%, 0.5)')
7676
{{< / code-panel >}}
7777
{{< code-panel language="javascript" >}}
78-
// We don't have a JavaScript code sample yet - Help us out and raise a PR
78+
// This feature is not supported in JS bindings
7979
{{< / code-panel >}}
8080
{{< code-panel language="kotlin" >}}
8181
private val HEX_COLOUR = Color.fromString("#2F7ED8")
@@ -112,7 +112,7 @@ CHOCOLATE = Color.from_string('chocolate')
112112
HOTPINK = Color.from_string('hotpink')
113113
{{< / code-panel >}}
114114
{{< code-panel language="javascript" >}}
115-
// We don't have a JavaScript code sample yet - Help us out and raise a PR
115+
// This feature is not supported in JS bindings
116116
{{< / code-panel >}}
117117
{{< code-panel language="kotlin" >}}
118118
private val BLACK = Color.fromString("black")
@@ -139,7 +139,7 @@ TRANSPARENT = Color.from_string('transparent')
139139
TRANSPARENT = Color.from_string('transparent')
140140
{{< / code-panel >}}
141141
{{< code-panel language="javascript" >}}
142-
// We don't have a JavaScript code sample yet - Help us out and raise a PR
142+
// This feature is not supported in JS bindings
143143
{{< / code-panel >}}
144144
{{< code-panel language="kotlin" >}}
145145
private val TRANSPARENT = Color.fromString("transparent")
@@ -171,7 +171,7 @@ login_button_colour = Color.from_string(driver.find_element(id: 'login').css_val
171171
login_button_background_colour = Color.from_string(driver.find_element(id: 'login').css_value('background-color'))
172172
{{< / code-panel >}}
173173
{{< code-panel language="javascript" >}}
174-
// We don't have a JavaScript code sample yet - Help us out and raise a PR
174+
// This feature is not supported in JS bindings
175175
{{< / code-panel >}}
176176
{{< code-panel language="kotlin" >}}
177177
val loginButtonColour = Color.fromString(driver.findElement(By.id("login")).getCssValue("color"))
@@ -197,7 +197,7 @@ assert login_button_background_colour == HOTPINK
197197
assert(login_button_background_colour == HOTPINK)
198198
{{< / code-panel >}}
199199
{{< code-panel language="javascript" >}}
200-
// We don't have a JavaScript code sample yet - Help us out and raise a PR
200+
// This feature is not supported in JS bindings
201201
{{< / code-panel >}}
202202
{{< code-panel language="kotlin" >}}
203203
assert(loginButtonBackgroundColour.equals(HOTPINK))
@@ -227,7 +227,7 @@ assert(login_button_background_colour.rgba == 'rgba(255, 105, 180, 1)')
227227
assert(login_button_background_colour.rgb == 'rgb(255, 105, 180)')
228228
{{< / code-panel >}}
229229
{{< code-panel language="javascript" >}}
230-
// We don't have a JavaScript code sample yet - Help us out and raise a PR
230+
// This feature is not supported in JS bindings
231231
{{< / code-panel >}}
232232
{{< code-panel language="kotlin" >}}
233233
assert(loginButtonBackgroundColour.asHex().equals("#ff69b4"))

0 commit comments

Comments
 (0)