简体   繁体   中英

Clicking a dynamic button with Playwright: How to identify by class name

在此处输入图像描述

How can I use Playwright to click on the button in the image, identified by its class name? It's important to note that the button's name changes daily, starting with 'Collect 10 Candies' and incrementing by *2 each day, before resetting every week.

Your locator for that class can be this:

.collect-candy-button

so:

page.locator(`.collect-candy-button`).click()

This is the solution that worked for me:

page.query_selector("button[data-action='click->points#claimCandy'][data-target='points.button']").click()

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM