Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How do you run Selenium 2.0 tests silently? I'm using it with Capybara. I find the window that pops up annoying. If pops up while I'm typing, I end up entering text in it.

UPDATE: I don't mind if it runs with the browser still, I just want it to do all of that in the background.

share|improve this question

2 Answers

You can use HtmlUnit Driver via akephalos

share|improve this answer
Thanks I'll check this out. – Ramon Tayag Feb 25 '11 at 5:38
Unfortunately several tests from and it seems it's a problem with HtmlUnit. The issues are an xpath one and some js that html unit doesn't like. Unforunately I've been trying to fix it for the past hour and I'm afraid I'm going down the route of fixing tests, not the code. I'll try this again in the future. – Ramon Tayag Mar 10 '11 at 11:22
correction: ...several tests fail and it... – Ramon Tayag Mar 10 '11 at 11:31
have you enabled JavaScript when instantiating your HTMLUnit driver object? (driver = new HtmlUnitDriver(true);) – Ardesco May 25 '11 at 10:45

Try using xvfb to push it to a display you don't see.

I followed this guide and it all worked for me.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.