InterviewSolution
Saved Bookmarks
| 1. |
How Can We Find All The Links On A Web Page? |
|
Answer» All the links are formed using anchor TAG 'a' and all links will have href ATTRIBUTE with URL VALUE. So by locating elements of tag Name 'a' we can FIND all the links on a webpage. All the links are formed using anchor tag 'a' and all links will have href attribute with URL value. So by locating elements of tag Name 'a' we can find all the links on a webpage. |
|