I'm trying to send a Whatsapp-Message via a Python script, therefor I'm using the following code:
from selenium import webdriver
from selenium.webdriver.support.ui import WebDriverWait
from selenium.webdriver.support import expected_conditions as EC
from selenium.webdriver.common.keys import Keys
from selenium.webdriver.common.by import By
import time
driver = webdriver.Chrome(r'''Z:\foo\bar\geckodriver.exe''')
driver.get("https://web.whatsapp.com/")
wait = WebDriverWait(driver, 600)
target = '"Target_Name"'
string = "Text to send"
x_arg = '//span[contains(@title,' + target + ')]'
group_title = wait.until(EC.presence_of_element_located((By.XPATH, x_arg)))
group_title.click()
inp_xpath = '//*[@id="main"]/footer/div[1]/div[2]/div/div[2]'
input_box = wait.until(EC.presence_of_element_located((By.XPATH, inp_xpath)))
for i in range(100):
input_box.send_keys(string + Keys.ENTER)
time.sleep(1)
But if I run the code, I always receive the message "ModuleNotFoundError: No module named 'selenium'", although I installed the selenium module in my cmd using "pip install selenium", so it should be on the Computer. My OS is Windows.