The task is to check broken links on a webpage using selenium RC and java . It can be done simply by
a) click on link A
b) wait for page to open
c) focus on this window
d) verify text present on this page
e) Close this window
Then follow steps a to e for links B , links C .... links N
This process is sequential.
Is it possible to parallely open all links in new windows and verify whether they are broken or not i.e. a more professional way ?
Kindly Advice ( if possible with a sample of code )