我正在尝试从框中选择一个图像,然后使用 selenium python 单击对齐按钮

@bot.event

async def on_raw_reaction_add(payload):

    channel = bot.get_channel(payload.channel_id)

    msg = await channel.fetch_message(payload.message_id)

    embed = msg.embeds[0]

    emoji = payload.emoji


    if user.bot:

        return


    if emoji == "emoji 1":

        fixed = bot.get_channel(733722567449509958)

        await fixed.send(embed=embed)


    elif emoji == "emoji 2":

        notBug = bot.get_channel(733722584801083502)

        await notBug.send(embed=embed)


    elif emoji == "emoji 3":

        notFixed = bot.get_channel(733722600706146324)

        await notFixed.send(embed=embed)


    else:

        return


慕运维8079593
浏览 77回答 1
1回答

元芳怎么了

.invisibility_of_element_located:用于检查元素是否不可见或不存在于 DOM 中的 Expectation。用于查找元素的定位器问题是为什么要等元素消失再点击呢?也许你需要的是.visibility_of_element_located或者更准确地说是.element_to_be_clickable
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Python