@kirill Try clicking on this selector instead
[aria-label="Allow all cookies"]:not([aria-disabled="true"])
Simple answer - you are using wrong selector, you are trying to click span that is not clickable.
Proper answer is too long, you would need to check how modern websites implement some of their buttons as in your case it's a div with button role what means clicking the span that you are trying to click won't trigger any event as it's role there to just contain text with some specific styles.
I didn't try to reproduce your code, but I'm more than sure that it will work. Let me know If I'm right.