Skip to content

Commit d1df441

Browse files
committed
[JS] fix format
1 parent a318608 commit d1df441

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

javascript/node/selenium-webdriver/README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ following path – /usr/bin/safaridriver. To enable automation on safari,
1818
you need to run command `safaridriver --enable`.
1919

2020
| Browser | Component |
21-
|:------------------|:---------------------------------|
21+
| :---------------- | :------------------------------- |
2222
| Chrome | [chromedriver(.exe)][chrome] |
2323
| Internet Explorer | [IEDriverServer.exe][release] |
2424
| Edge | [MicrosoftWebDriver.msi][edge] |
@@ -32,9 +32,9 @@ The sample below and others are included in the `example` directory. You may
3232
also find the tests for selenium-webdriver informative.
3333

3434
```javascript
35-
const { Builder, Browser, By, Key, until } = require('selenium-webdriver');
35+
const { Builder, Browser, By, Key, until } = require('selenium-webdriver')
3636

37-
(async function example() {
37+
;(async function example() {
3838
let driver = await new Builder().forBrowser(Browser.FIREFOX).build()
3939
try {
4040
await driver.get('https://www.google.com/ncr')
@@ -140,7 +140,7 @@ v23.6.0,
140140
respectively. Then a Selenium release would have the following support levels:
141141

142142
| Version | Support |
143-
|:----------:|:-------------:|
143+
| :--------: | :-----------: |
144144
| <= 16.20.2 | _unsupported_ |
145145
| 16.20.2 | supported |
146146
| 18.8.0 | supported |
@@ -166,7 +166,7 @@ If Node releases a new [LTS] each October and a new major version every 6
166166
months, the support window for selenium-webdriver will be roughly:
167167

168168
| Release | Status | END-OF-LIFE |
169-
|:-------:|:---------------:|:-----------:|
169+
| :-----: | :-------------: | :---------: |
170170
| v18.x | Maintenance LTS | 2025-04-30 |
171171
| v19.x | End-of-Life | 2023-06-01 |
172172
| v20.x | Maintenance LTS | 2026-04-30 |
@@ -175,7 +175,7 @@ months, the support window for selenium-webdriver will be roughly:
175175
| V23.x | Current | 2025-06-01 |
176176

177177
## Issues
178-
178+
179179
Please report any issues using the [Selenium issue tracker][issues]. When using
180180
the issue tracker
181181

0 commit comments

Comments
 (0)