Till now all our tests were passing but since a week we see some problems with the facebook login test we wrote, here are the steps that we use to login with facebook :
When /^I login to facebook$/ do
browser = page.driver.browser
browser.switch_to.default_content
fill_in "email", :with => @facebook_test_user["email"]
fill_in "pass", :with => @facebook_test_user["password"]
click_button "Connection"
end
Now this test was passing fine because we all have facebook in French so the text of the button was Connection, but now also people that use other language for Facebook are running the tests and there it fails. Here is how the layout of the facebook button looks :
<div id="login_button_inline">
<label for="u2krk0_2" id="loginbutton" class="uiButton uiButtonConfirm uiButtonLarge">
<input type="submit" id="u2krk0_2" name="login" value="Connection">
</label>
</div>
The id changes constantly so using the id is not an option, how can I click on the button without taking care of the language of Facebook so that my tests are passing fine?