I'm trying to click Facebook Like button using Webdriver. You can see an example Like button at this page.
After switching to iframe I've tried:
page.execute_script("document.querySelector('.pluginConnectButton > div:first-child button').click()")
This script works in Firebug and Chrome Developer Tools after switching to iframe.
But it doesn't work in FirefoxDriver and ChromeDriver (script passes but button isn't changed to clicked one)
How can I click this button using Webdriver?