ctrl f谷歌浏览器-python硒

时间:2020-06-03 08:30:46

标签: python selenium keyboard ctrl

我需要在网页中找到数据表中的某些值(“ c”变量),因此我想使用ctrl + f。对于每个值,我都需要单击一个按钮(我想我可以做到),但是ctrl + f不起作用。我在这个论坛上搜索了有关此内容,发现的3个帖子对我不起作用。我尝试过这样的事情:

c = []

    for item in fat_list:
        if item not in fatan_list:
            if item not in c:
                c.append(item)
    print(c)

     for item in c:
        action = ActionChains(driver)
        driver.find_element_by_tag_name("body")
        action.send_keys(Keys.CONTROL, "F").perform()
        time.sleep(3)

我没有收到任何错误,但ctrl f不起作用。你能帮我吗?

0 个答案:

没有答案