hi guys, im newbie in selenium, trying to run my python script, but it's not working as is with the error:
ModuleNotFoundError: No module named 'selenium'
my python script code is:
from selenium import webdriver from selenium.webdriver.common.keys import Keys
driver = webdriver.Remote ( command_executor='http://localhost:4444/wd/hub', desired_capabilities=capabilities )
im running it via python3: python
script.pywhat im doing wrong?