Я делаю сценарий автоматизации WhatsApp для отправки сообщения. Когда я запускаю скрипт, он запрашивает javascript подтверждение открытия сети WhatsApp.
Как я могу это сделать .?
Мой код:
from selenium import webdriver
import pandas as pd
from selenium.webdriver.common.by import By
from selenium.webdriver.common.keys import Keys
import time
import os
import mysql.connector
driver = webdriver.Chrome('/Users/evilslab/Downloads/chromedriver 3')
driver.get('https://api.whatsapp.com/send?phone=0097155000XXXX)
# Click the link to activate the alert
driver.find_element(By.LINK_TEXT, "https://api.whatsapp.com wants to open this application.").click()
# Store the alert in a variable for reuse
alert = driver.switch_to.alert
# Store the alert text in a variable
text = alert.text
# Press the Cancel button
alert.dismiss()
Это не подтверждающий, что