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.

Selenium is a portable software testing framework for web applications. It provides a record/playback tool for authoring tests without learning a test scripting language and a test domain specific language (DSL), to write tests in a number of popular programming languages.

learn more… | top users | synonyms

0
votes
0answers
10 views

Automation test for canvas flash application inside facebook

i would like to know if it is possible to run automation test for flash application inside Facebook. i searched the forum and the web and did not found anything about it. is it possible to use ...
1
vote
2answers
172 views

Facebook Login in Selenium Tests

I'm working on a django project, using django_facebook for Facebook interaction, and Selenium for automated system testing. In the tests, when it comes to logging to facebook from my application, I ...
2
votes
1answer
326 views

Logging into Facebook with test account using Selenium

I have some PHP code that creates a Facebook test account in my application using the graph api. I've tested this code out, and it works fine. I'm having trouble actually logging into Facebook as the ...
0
votes
1answer
150 views

Best way to poll a Facebook page/feed for new post?

I was going to use selenium webdriver to navigate to a facebook feed and just refresh the page every couple of seconds to check if there is a new post. I will then need to take that post and parse it ...
1
vote
0answers
108 views

Selenium any work around for Facebook Connect IE and Safari

Just wondering if anyone has encountered similar issues and what their workaorunds are if any found. For solutions, looking for Selenium RC, as Selenium 2 / WebDriver is last resort as we're not ...
0
votes
0answers
159 views

Selenium Perl munti popup

I'm having a problem with selenium perl using popup window The problem: Its a Facebook problem anyone have problem targeting Facebook popup when you click facebook connect or any popup that is show ...
2
votes
1answer
479 views

Facebook Login with Selenium for C#

I've been playing with the Selenium C# framework and been trying to do a facebook login, but without any luck. This is what i got so far (based on this post: Testing a Facebook Connect application ...
1
vote
1answer
457 views

Testing facebook connect with selenium

I'm having trouble switching between the popup windows in Selenium IDE. I'm using Facebook's test user system to create a test user (this part works perfectly), then wrote some steps to remove the ...
8
votes
1answer
675 views

Facebook connect automated testing, recommedations?

Since so many sites use Facebook login/connect for authentication, does Facebook or others have a standard recommendation on how to automate clicking Facebook button to bring up popup, then switch to ...
1
vote
1answer
149 views

test a facebook post with selenium and phpunit

I have a script that posts to a users facebook when a user action is completed. Therefore i would like to automate the process of testing/seeing has this post appeared on the wall of the user (and ...
1
vote
0answers
328 views

How to redirect to an external url with Selenium, and come back?

I am working in perl with Selenium RC, server version 2.19.0-b09 and I cannot figure out whether it is even possible to redirect to an external URL and come back to my application. I am trying to test ...
4
votes
2answers
1k views

Testing a Facebook Connect application using Selenium?

Does anyone have experience using Selenium to automate testing of a webapp that uses Facebook Connect for user login? Any tips or methods that you recommend?
4
votes
1answer
623 views

Facebook authentication using Selenium WebDriver

Using Selenium WebDriver, I want to handle Facebook authentication and get Access Token with the HtmlUnitDriver, how can i do it?
0
votes
1answer
487 views

How do I use Selenium IDE to log in as Test User and edit data in “suggestor” fields?

I have created Facebook Test Users using the API. Facebook doesn't allow updates to User profile data, so I created a script for Selenium IDE to log in as each user and update data (work, education, ...
1
vote
2answers
602 views

How use selenium to click on button which name is generated by 6 digits?

How can i click on button which pattern name in id is [u<6digits>_3] //? Example: u123456_3 Does selenium support any member with that ability? You can see it while logging to facebook.
3
votes
1answer
1k views

Facebook test accounts using selenium - failing to log in my fake users

I am programmatically creating test accounts, and then immediately trying to log in w/ them using a selenium driven browser. Unfortunately, the browser is just redirected to the facebook homepage. I ...
0
votes
1answer
645 views

Capybara+Selenium not finding FB-Connect link/button

I have the following snippet in my html displaying a FB-Connect link: <fb:login-button id="mylogin" onlogin="try { window.location.href = "http://localhost:3000/"; } catch (e) { alert('RJS ...