- If you have many duplicate buttons on your page - for example, various 'Add to Cart' buttons on your e-commerce page, make sure to provide a descriptive
aria-label
. This will enable users on assistive devices to differentiate between the different buttons with ease.
<button aria-label={`${buttonText} ${productName}`}>{buttonText}</button>