Want to scroll the chats in web.whatsapp.com. Have shared the pseudo-code below:
recentList = driver.find_elements_by_xpath("//div[@class='_2wP_Y']")
driver.execute_script("window.scrollTo(0, 500);")
Looking forward for a solution so as to scoll in web.whatsapp.com till the last chat.
Thanks in advance!
try below code
recentList = driver.find_elements_by_xpath("//div[@class='_2wP_Y']")
for list in recentList :
driver.execute_script("arguments[0].scrollIntoView();", list )
// other operation
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With