Skip to content

Commit 9ffc3a8

Browse files
committed
Add SessionNotCreatedException to Portuguese translation (_index.pt-br.md)
1 parent e31d0c5 commit 9ffc3a8

File tree

2 files changed

+35
-0
lines changed

2 files changed

+35
-0
lines changed

website_and_docs/content/documentation/webdriver/troubleshooting/errors/_index.ja.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -141,3 +141,20 @@ like when the last tab/browser has closed (e.g. `driver.close()`)
141141

142142
Check your script for instances of `driver.close()` and `driver.quit()`, and any other possible causes of closed
143143
tabs/browsers. It could be that you are locating an element before you should/can.
144+
145+
## SessionNotCreatedException
146+
147+
This exception occurs when the WebDriver is unable to create a new session for the browser. This often happens due to version mismatches, system-level restrictions, or configuration issues.
148+
149+
### Likely Cause
150+
151+
- The browser version and WebDriver version are incompatible (e.g., ChromeDriver v113 with Chrome v115).
152+
- macOS privacy settings may block the WebDriver from running.
153+
- The WebDriver binary is missing, inaccessible, or lacks the necessary execution permissions (e.g., on Linux/macOS, the driver file may not be executable).
154+
155+
156+
### Possible Solutions
157+
158+
- Ensure the WebDriver version matches the browser version. For Chrome, check the browser version at `chrome://settings/help` and download the matching driver from [ChromeDriver Downloads](https://chromedriver.chromium.org/downloads).
159+
- On macOS, go to **System Settings > Privacy & Security**, and allow the driver to run if blocked.
160+
- Verify the driver binary is executable (`chmod +x /path/to/driver` on Linux/macOS).

website_and_docs/content/documentation/webdriver/troubleshooting/errors/_index.pt-br.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -141,3 +141,21 @@ This usually occurs when the session has been deleted (e.g. `driver.quit()`) or
141141
### Possible Solutions
142142

143143
Check your script for instances of `driver.close()` and `driver.quit()`, and any other possible causes of closed tabs/browsers. It could be that you are locating an element before you should/can.
144+
145+
## SessionNotCreatedException
146+
147+
This exception occurs when the WebDriver is unable to create a new session for the browser. This often happens due to version mismatches, system-level restrictions, or configuration issues.
148+
149+
### Likely Cause
150+
151+
- The browser version and WebDriver version are incompatible (e.g., ChromeDriver v113 with Chrome v115).
152+
- macOS privacy settings may block the WebDriver from running.
153+
- The WebDriver binary is missing, inaccessible, or lacks the necessary execution permissions (e.g., on Linux/macOS, the driver file may not be executable).
154+
155+
156+
### Possible Solutions
157+
158+
- Ensure the WebDriver version matches the browser version. For Chrome, check the browser version at `chrome://settings/help` and download the matching driver from [ChromeDriver Downloads](https://chromedriver.chromium.org/downloads).
159+
- On macOS, go to **System Settings > Privacy & Security**, and allow the driver to run if blocked.
160+
- Verify the driver binary is executable (`chmod +x /path/to/driver` on Linux/macOS).
161+

0 commit comments

Comments
 (0)