我正在无头ubuntu服务器上运行jenkins实例。对于某些GUI测试,出现以下错误
org.assertj.swing.exception.ActionFailedException: The component to click is out of the boundaries of the screen
如何设置屏幕分辨率?
答案 0 :(得分:0)
如果您使用的是xvfb,则可能是您要寻找的:
xvfb-run --auto-servernum --server-args "-screen 0 1024x768x24" ant test
这将调整虚拟屏幕尺寸。用您自己的命令替换“ ant test”。