Skip to content

Commit

Permalink
docs: debug selenium
Browse files Browse the repository at this point in the history
  • Loading branch information
kiyoon authored Feb 18, 2025
1 parent 22fdc6c commit 80a59e1
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -565,6 +565,20 @@ The program is in the alpha stage. If it crashes it's likely that the whole brow
## 🤔 FAQ
> Firefox doesn't run.
Make sure your setup with selenium has no problem. Run the following python code to see if selenium is even working.
```python
# Run with the same environment Jupynium is installed.
from selenium import webdriver
driver = webdriver.Firefox()
driver.get("https://www.selenium.dev/selenium/web/web-form.html")
```
If you're using Ubuntu 22.04 or higher, you need to either install firefox with apt (not snap) or put snap geckodriver in `$PATH`.
See <https://stackoverflow.com/questions/72405117/selenium-geckodriver-profile-missing-your-firefox-profile-cannot-be-loaded>
> 🌽 How do I use different languages / kernels?
Instead of `*.ju.py` if you make files named `*.ju.*` (e.g. `*.ju.r`) you will see all the keybindings and commands.
Expand Down

0 comments on commit 80a59e1

Please sign in to comment.