Skip to content

Commit e8beceb

Browse files
authored
fix(selenium): chromedriver path (#581)
1 parent cb65553 commit e8beceb

File tree

1 file changed

+1
-22
lines changed

1 file changed

+1
-22
lines changed

content/manipulation/04a_webscraping_TP.qmd

Lines changed: 1 addition & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -1393,7 +1393,7 @@ run the following commands:
13931393
!pip install chromedriver-autoinstaller selenium
13941394
13951395
import chromedriver_autoinstaller
1396-
chromedriver_autoinstaller.install()
1396+
path_to_web_driver = chromedriver_autoinstaller.install()
13971397
```
13981398

13991399
<br>
@@ -1417,27 +1417,6 @@ For example, from a
14171417

14181418
:::
14191419

1420-
::: {.content-visible when-profile="fr"}
1421-
Après avoir installé `Chromium`,
1422-
il est nécessaire d'indiquer à `Python`
1423-
le trouver. Si vous êtes sur `Linux` et que vous
1424-
avez suivi les consignes précédentes, vous pouvez faire :
1425-
:::
1426-
1427-
::: {.content-visible when-profile="en"}
1428-
After installing `Chromium`,
1429-
you need to tell `Python` where to find it. If you are on `Linux` and have followed the previous instructions, you can do the following:
1430-
:::
1431-
1432-
```{python}
1433-
#| output: false
1434-
#| echo: true
1435-
import selenium
1436-
from webdriver_manager.chrome import ChromeDriverManager
1437-
1438-
path_to_web_driver = ChromeDriverManager().install()
1439-
```
1440-
14411420
::: {.content-visible when-profile="fr"}
14421421
En premier lieu, il convient d'initialiser le comportement
14431422
de `Selenium` en répliquant les paramètres

0 commit comments

Comments
 (0)