You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
from alright import WhatsApp
import time
messenger = WhatsApp()
while True:
chats = messenger.fetch_all_unread_chats(limit=True, top=30)
for chat in chats:
print(chat['sender'])
time.sleep(1)
the problem is that i need to get, once again, the most recent unread chats.
on selenium, i can see that the message list is not fetching the top/first ones.
How i can solve this?
The text was updated successfully, but these errors were encountered:
Hi!
My code is simple
the problem is that i need to get, once again, the most recent unread chats.
on selenium, i can see that the message list is not fetching the top/first ones.
How i can solve this?
The text was updated successfully, but these errors were encountered: