I am using the Ruby gem Capybara for automation purposes (having read the instructions on this website). I have a simple script that shows the problem I am having:
require 'capybara'
session = Capybara::Session.new(:selenium)
session.visit 'https://service.ringcentral.com/'
session.fill_in 'LoginName', with: '555-555-5555'
I have tried many different suggestions here on SO, and from other websites, with no success. I think this simply has something to do with the RingCentral website itself, because I do not have as much issue with other websites (such as google.com).