放慢SWTBOT执行



我想放慢swtbot执行。

我已经找到了这个Wiki:https://wiki.eclipse.org/swtbot/faq#can_i_slow_slow_slow_down_the_execution_speed_speed_speed_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");对我不起作用。

谢谢,

antoine

减慢执行使用

  • System.setProperty("org.eclipse.swtbot.playback.delay", "1200");,没有... .poll. ...或
  • SWTBotPreferences.PLAYBACK_DELAY = 1000;代替SWTBotPreferences.DEFAULT_POLL_DELAY = 1000;

相关内容

  • 没有找到相关文章

最新更新