硒未点击Instagram上的“赞”按钮

时间:2020-04-17 15:39:34

标签: selenium click selenium-chromedriver

由于某种原因,Instagram僵尸程序似乎可以运行,但是硒没有单击“赞”按钮。可能是什么问题?谢谢。

    unique_photos = len(pic_hrefs)
    for pic_href in pic_hrefs:
        driver.get(pic_href)
        time.sleep(2)
        driver.execute_script("window.scrollTo(0, document.body.scrollHeight);")
        try:
            time.sleep(random.randint(2, 4))
            like_button = lambda: driver.find_element_by_xpath('//span[@aria-label="Like"]').click()
            like_button().click()
            print('Liked!')
            for second in reversed(range(0, random.randint(18, 28))):
                print_same_line("#" + hashtag + ': unique photos left: ' + str(unique_photos)
                                + " | Sleeping " + str(second))
                time.sleep(1)
        except Exception as e:
            time.sleep(2)
        unique_photos -= 1

1 个答案:

答案 0 :(得分:0)

尝试:

 //article[1]//div[2]//section[1]//span[1]//button[1]//*[local-name()='svg']

如果要单击所有类似的按钮,那么毫无疑问,您需要在xpath下使用它:::

//article[*]//div[2]//section[1]//span[1]//button[1]//*[local-name()='svg']