I have a set of tests which lead to a Facebook page where the user logs in. Unfortunately, this page has some JavaScript errors which I can't influence, so my tests would never finish.
Is there any way to temporarily disable the check for JS errors? I was thinking about something like: Capybara.javascript_driver.js_errors = false
and then setting it to true
later, but unfortunately this doesn't work. I have tried variations of this to no avail.
Any ideas on how my problem could be solved?
I have a set of tests which lead to a Facebook page where the user logs in. Unfortunately, this page has some JavaScript errors which I can't influence, so my tests would never finish.
Is there any way to temporarily disable the check for JS errors? I was thinking about something like: Capybara.javascript_driver.js_errors = false
and then setting it to true
later, but unfortunately this doesn't work. I have tried variations of this to no avail.
Any ideas on how my problem could be solved?
Share Improve this question edited Jul 18, 2014 at 5:31 hayesgm 9,0961 gold badge39 silver badges41 bronze badges asked Feb 25, 2014 at 16:44 TrashyMcTrashTrashyMcTrash 1,2922 gold badges16 silver badges41 bronze badges 1 |2 Answers
Reset to default 11Thanks to Roman Pominov's comment I was able to find a solution. It was actually quite simple:
I just added rescue Capybara::Poltergeist::JavascriptError
after the statement in question, and then it worked like a charm. My initial idea was too complicated ;)
This makes the trick:
page.driver.browser.js_errors = false
You may also add around callback:
# spec_helpers.rb
config.around(:each) do |example|
original_value = page.driver.browser.instance_variable_get(:@js_errors)
if example.metadata.has_key?(:js_errors)
page.driver.browser.js_errors = example.metadata[:js_errors]
end
example.run
page.driver.browser.js_errors = original_value
end
In your tests:
# my_feature_spec.rb
it "should ignore errors", js_errors: false do
...
end
try{}catch(e){}
block? I mean the part where Facebook page opens. Or tests itself not written in javascript? – Roman Pominov Commented Feb 25, 2014 at 16:54