I'm working with https://www.beatstars.com/dashboard.
Why does this work: action.key_down(Keys.CONTROL).send_keys('A').perform()
But this doesnt work: action.key_down(Keys.CONTROL).send_keys('0').perform()
The first is selecting all text (Control+A) and the second is resetting Chrome's zoom size (Control+0)
Any help would be greatly appreciated. Thank you.