Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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?

share|improve this question
Can you show the working example? – Murtaza Hussain Jan 19 at 6:28
@MurtazaHussain There's working Like button at this page. I need to click button at another page but buttons are the same. – Andrey Botalov Jan 19 at 6:49
I was able to get this to work in watir-webdriver, but I had to trigger the mouseover event for the button before clicking it. Unfortunately I could not figure out how to replicate the same in Capybara or Selenium-Webdriver. Facebook might also be checking for the use of webdriver as you can see in the iframe that it will see some webddriver attribute equal to true. – Justin Ko Jan 25 at 14:15

2 Answers

While this worked for me it seems brittle. I had to use some javascript to get the id of the iframe since FB changes the id on each page load. Luckily they're not changing the class of the iframe.

id = page.evaluate_script("$('.fb_ltr').attr('id');")
within_frame(id) do
  page.first(:css, '.pluginButton').click
end
share|improve this answer

This to work for you.

if(driver.findElement(By.cssSelector("BODY")).getText().matches("^[\\s\\S]*Like[\\s\\S]*$")== true) {
driver.findElement(By.xpath("//form[@id='u_0_1']/div/div/div/button")).click();
}
else{
System.out.println("Unable to click Like button on page");
}
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.