简体   繁体   English

尝试使用 python selenium 在 whatsapp 上发送消息

[英]trying to send message on whatsapp with python selenium

I need to open web whatsapp but it gives me Deprecation Warning here is the code我需要打开 web whatsapp 但它给了我弃用警告这里是代码

import selenium
from selenium import webdriver
import time

driver_path = r"C:\Program Files (x86)\Google\Chrome\Application\chrome.exe"
driver = webdriver.Chrome(driver_path)
driver.get("https://web.whatsapp.com/")
driver.maximize_window()
time.sleep(20)
driver.quit

İts not giving me anything just opens Chrome不给我任何东西只会打开 Chrome

DeprecationWarning: executable_path has been deprecated, please pass in a Service object

You need to pass The driver_path to Service() .您需要将driver_path传递给Service() below should work for you.下面应该适合你。

from selenium import webdriver
from selenium.webdriver.chrome.service import Service
driver_path = r"chromdriver.exe full file path here"
service = Service(driver_path)
option = webdriver.ChromeOptions()
driver  = webdriver.Chrome(service = service, options = option )
driver.get("https://web.whatsapp.com/")
driver.maximize_window()
time.sleep(20)
driver.quit

First you need download chromedriver - https://chromedriver.chromium.org/downloads首先你需要下载 chromedriver - https://chromedriver.chromium.org/downloads

from selenium import webdriver
from selenium.webdriver.chrome.service import Service
import time

ser = Service('path_to\chromedriver.exe')
browser = webdriver.Chrome(service=ser)
browser.get('https://web.whatsapp.com/')
browser.maximize_window()
time.sleep(20)
browser.quit

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM