(Jul-16-2024, 04:57 PM)rdwessex Wrote: Great, thanks. Although I have another issue. I can't import Selenium. Everything I'm trying to do in cmd is throwing an error. See screenshots. I keep getting pip is not a recognized command, etc.
You do not type
rdwes
it just a dictionary,some basic understating is missing here.
Test
python
and
pip
like this in cmd.
1 2 3 4 5 6 7 8 9 10 11 |
C:\>python - V
Python 3.12 . 2
C:\>pip - V
pip 24.0 from C:\Python312\Lib\site - packages\pip (python 3.12 )
C:\>python - m pip - V
pip 24.0 from C:\python312\Lib\site - packages\pip (python 3.12 )
C:\>
|
Can just install like this and add pip to path later
1 2 3 4 5 |
C:\>python - m pip install selenium - - upgrade
Requirement already satisfied: selenium in c:\python312\lib\site - packages ( 4.18 . 1 )
Collecting selenium
.....
Successfully installed selenium - 4.22 . 0 websocket - client - 1.8 . 0
|
Also if try to use Selenium most add chrome driver
chromedriver.exe
to a OS Path,or it will not find it.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
from selenium import webdriver
from selenium.webdriver.chrome.options import Options
from selenium.webdriver.chrome.service import Service
from selenium.webdriver.common.by import By
import time
options = Options()
ser = Service(r "C:\cmder\bin\chromedriver.exe" )
browser = webdriver.Chrome(service = ser, options = options)
browser.get(url)
time.sleep( 10 )
browser.close()
|