English 中文(简体)
记录两种不同版本的申请之间的差异的工具
原标题:Tool to document differences between two different versions of an application

我需要记录 Java方案两种不同版本之间的视觉差异。 这涉及点击旧版本中的一个内容,然后在新版本中点击同一内容,并在两个版本显示不同信息的每一个场合打上一个屏幕,并制作一个博客报告。

Is there a tool that can automate this?

在我迄今所尝试的这些想法中,我对其他想法持开放态度:

我把 Java方案放在旁边,并尝试使用自动电车复制我的 mo点击960个粉碎机,但我已赢得一些强硬行为,甚至无视我发现的“

我还利用 JavaRobot,因此,新版的电器将重复点击960 pixels到右边,但甚至连机器人也无法在其他 Java窗中点击。 (说明:机器人能够点击Windows desktop和其他方案,而仅仅点击其他 Java方案。)

最佳回答

It seems that a Java application cannot click in another Java application for some reason. I ended up having to do all the clicking manually. If I were to do it again in the future, I think my best bet would be to have the implement the feature ahead of time. Then I d have to the two versions of the app communicate directly with each other.

例如,第一个方案将记录每个点击/drag/etc的相对湿法坐标的模拟点宏观,然后通过网络袖珍向第二个方案发送宏观数据。 之后,第二个方案将在自己的屏幕坐标内重新发挥宏观作用,然后将控制权退回到第一个方案。 也许我会滥用Abbott GUI检测框架

问题回答

暂无回答




相关问题
Spring Properties File

Hi have this j2ee web application developed using spring framework. I have a problem with rendering mnessages in nihongo characters from the properties file. I tried converting the file to ascii using ...

Logging a global ID in multiple components

I have a system which contains multiple applications connected together using JMS and Spring Integration. Messages get sent along a chain of applications. [App A] -> [App B] -> [App C] We set a ...

Java Library Size

If I m given two Java Libraries in Jar format, 1 having no bells and whistles, and the other having lots of them that will mostly go unused.... my question is: How will the larger, mostly unused ...

How to get the Array Class for a given Class in Java?

I have a Class variable that holds a certain type and I need to get a variable that holds the corresponding array class. The best I could come up with is this: Class arrayOfFooClass = java.lang....

SQLite , Derby vs file system

I m working on a Java desktop application that reads and writes from/to different files. I think a better solution would be to replace the file system by a SQLite database. How hard is it to migrate ...

热门标签