1

I have a existing java web application. Whenever there are changes to enhance the application. What we usually do is that we will take the screenshots of the page and use some image editor software to copy and paste the modified design e.g. add new fields etc. and then send to users for review.

I like to ask if there is anyway to generate the html mockup from the web application? Such that we can directly edit from the mockup instead.

I know we can use wget but my application is password protected so i not sure which command to use.

Will appreciate for more advice thanks.

Miserable Variable
  • 28,432
  • 15
  • 72
  • 133
dfdf
  • 11
  • 2

2 Answers2

0

Will this work?

wget --user=username --password='password' ...
TofuBeer
  • 60,850
  • 18
  • 118
  • 163
0

Maybe Balsamiq is what you have in mind.

duffymo
  • 305,152
  • 44
  • 369
  • 561
  • 1
    Does Balsamiq **generate the html mockup from the web application**? User wants the new mock-ups to be modifications of the existing system. – Miserable Variable Sep 18 '11 at 03:25