我正在测试我的 SWING Gui。我通过使用 FEST 框架来做到这一点。
我有以下输入:
window.textBox("txtDatabaseConnectionString").enterText("jdbc:oracle:thin:10.254.202.27:1521:db");
它实际上开始用以下值填充文本框:
jdbc.oracle.thin&a
比测试崩溃...
我得到以下异常输出
java.lang.IllegalArgumentException:在 org.fest.swing.core.BasicRobot.doPressKey(BasicRobot.java:633) 的 org.fest.swing.core.RobotEventGenerator.pressKey(RobotEventGenerator.java:116) 处的无效键代码“46”在 org.fest.swing.core.BasicRobot.keyPressAndRelease(BasicRobot.java:618) 在 org.fest.swing.core.BasicRobot.type(BasicRobot.java:589) 在 org.fest.swing.core.BasicRobot.enterText (BasicRobot.java:572) 在 org.fest.swing.driver.JTextComponentDriver.enterText(JTextComponentDriver.java:126) 在 org.fest.swing.fixture.JTextComponentFixture.enterText(JTextComponentFixture.java:208) 在 gui.GuiTest。 shouldCopyTextInLabelWhenClickingButton(GuiTest.java:44)