The ruby tag has no wiki summary.
2
votes
3answers
415 views
Is it possible to stop page loading on the browser using selenium web-driver?
I searched online, but couldn't find anything about how to stop page loading over a browser using selenium web-driver.
Any idea for the same?
1
vote
0answers
239 views
Connection refused error when running selenium with chrome and firefox drivers
I am running selenium tests with firefox and chrome drivers. I get a connection refused error when I run the tests in as a block
Test example :
require 'minitest_helper'
headless = Headless.new
...
1
vote
1answer
81 views
Loading test data from MySQL database
I use Ruby with Selenium to do test automation on a web application that has a MySQL DB behind it. I need a good way to load data into the DB from a Ruby script. So far in my research I have found ...