本文介绍了使用Jemmy测试Java Web Start应用程序的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我需要使用Jemmy创建一些gui测试,但是我不知道如何使用javaws应用程序启动它.在tutorials/examples/etc中是这样的:
I need to create some gui tests using Jemmy but I have no idea how to launch it with javaws application.In tutorials/examples/etc is something like that:
new ClassReference("org.netbeans.jemmy.explorer.GUIBrowser")
.startApplication();
此代码打开一个示例窗口,但是如何使用ClassReference对象打开*.jnlp
文件?还是是将jemmy与Java Web Start应用程序连接"的另一种方法?
This code opens an example window, but how can I, using ClassReference object open *.jnlp
file? Or is it another way to "connect" jemmy with java web start application?
感谢前进.
推荐答案
您可以通过准备包含Jemmy的特殊构建并从以jnlp模式运行的应用程序中调用Jemmy来实现此目的.
You can achieve this by preparing special build with Jemmy included and call Jemmy from the app run in jnlp mode itself.
这篇关于使用Jemmy测试Java Web Start应用程序的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!