我想减慢SWTBot执行速度。
我已经找到了这个wiki: https://wiki.eclipse.org/SWTBot/FAQ#Can_I_slow_down_the_execution_speed_of_SWTBot_tests.3F
但对我来说它不起作用。
我在SWTBotPreferences中的DEFAULT_POLL_DELAY看起来像这样:
public static final long DEFAULT_POLL_DELAY = toLong(System.getProperty(KEY_DEFAULT_POLL_DELAY, "500"), 500);
所以,SWTBotPreferences.DEFAULT_POLL_DELAY = 1000;
无效......
使用System.setProperty("org.eclipse.swtbot.playback.poll.delay", "1200");
它对我不起作用。
谢谢,
安托
答案 0 :(得分:1)
减慢执行速度
System.setProperty("org.eclipse.swtbot.playback.delay", "1200");
,没有...... .poll.
...或SWTBotPreferences.PLAYBACK_DELAY = 1000;
代替SWTBotPreferences.DEFAULT_POLL_DELAY = 1000;