How can I run jstestdriver test files in Safari on OSX without any problems? I can achieve the same on Linux using the xvfb-run command. However, in OSX there is no such shell command. I tried to execute the following 2 commands and then execute my test files in safari.
Xvfb :99 -ac &
export DISPLAY=:99
However, the Safari browser appears instead of working in the xvfb environment. Safari seems to completely ignore the DISPLAY command. Is there a way to run Safari without OSD on OSX?
source
share