我尝试使用python按照以下代码使用WhatsApp,但我收到以下错误:raise TimeoutException(message, screen, stacktrace) selenium.common.exceptions.TimeoutException: Message:
代码有什么问题,或者我在这里缺少的东西? 有人可以帮我解决这个问题吗?如何在WhatsApp中使用python scrips发送自动回复。
感谢您的帮助。
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
# Replace below path with the absolute path
# to chromedriver in your computer
driver = webdriver.Chrome('/home/saket/Downloads/chromedriver')
driver.get("https://web.whatsapp.com/")
wait = WebDriverWait(driver, 600)
# Replace 'Friend's Name' with the name of your friend
# or the name of a group
target = '"Friend\'s Name"'
# Replace the below string with your own message
string = "Message sent using Python!!!"
x_arg = '//span[contains(@title,' + target + ')]'
group_title = wait.until(EC.presence_of_element_located((
By.XPATH, x_arg)))
group_title.click()
inp_xpath = '//div[@class="input"][@dir="auto"][@data-tab="1"]'
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)
答案 0 :(得分:0)
您可以处理该异常,
from selenium.common.exceptions import TimeoutException
try:
driver.get("https://web.whatsapp.com/")
except TimeoutException:
# You can write retry code here
我希望这会有所帮助。