Ocorreu uma exceção: o objeto TypeError 'WebElement' não é subscritível
Olá pessoal, sou realmente um novato em python e acabei de escrever um código que abre o Whatsapp
e você dá o nome da pessoa e a mensagem e envia quantas vezes quiser.
Mas quando eu começo a depurar o código, ele me dá o seguinte:
Exception has occurred: TypeError 'WebElement' object is not subscriptable File "E:\Iliya\My Courses\Python\Projects\Whatsapp Robot\Whatsapp_Bot.py", line 15, in <module> msg = driver.find_element_by_class_name('_3FRCZ')[1]
# ======================================
from selenium import webdriver
PATH = 'C:\\Program Files (x86)\\chromedriver.exe'
driver = webdriver.Chrome(PATH)
driver.get('https://web.whatsapp.com/')
input("Please Press The 'Enter' Button... ")
name = input("Enter Person's Name: ")
msg = input("Enter The Message: ")
counter = int(input("How Many Times Do You Want To Repeat The Message?: "))
user = driver.find_element_by_xpath('//span[@title = "{}"]'.format(name))
user.click()
msg = driver.find_element_by_class_name('_3FRCZ')[1]
for i in range(counter):
msg.send_keys(msg)
button = driver.find_element_by_class_name('_1U1xa')[0]
button.click()
caras, por favor, alguém bom em python me responda !!! 🙏🙏
Respostas
find_element_by_class_name ()
find_element_by_class_name() encontra um elemento pelo nome da classe.
Na linha de código:
msg = driver.find_element_by_class_name('_3FRCZ')[1]
driver.find_element_by_class_name('_3FRCZ')
retornaria um único WebElement . Portanto, você não poderá anexar um índice a ele ou, em outras palavras, torná-lo subscritível.
Solução
Existem duas soluções:
Remova o índice, ou seja,
[1]
seu código ficará bom.Como alternativa, em vez de
driver.find_element_by_class_name()
você precisa usarfind_elements_by_class_name()
. Portanto, efetivamente, sua linha de código será:msg = driver.find_elements_by_class_name('_3FRCZ')[1]