0

我有一个问题,当我尝试在调试模式下设置断点并使用“swtBot Test Recorder”记录时,生成的代码是:

bot.contextMenu("Add Breakpoint...").click();
bot.textWithLabel("Line number: ").setText("58");
bot.button("OK").click();   

(我右键单击行号列附近的字段并选择添加断点)但是当我将此代码放入我的@Test 时,它是错误的。我需要一种在特定行上放置断点的方法。

4

1 回答 1

0

这适用于 Linux,我不了解 Windows:

bot.menu("Navigate").menu("Go to Line...").click();
bot.text().setText(breakpointString);
bot.button("OK").click();
bot.menu("Run").menu("Toggle Line Breakpoint").click();
于 2015-03-05T16:38:51.893 回答