I’m tryng to verify if all my page links are valid, and also something similar to me if all the pages have a specified link like contact. i use python unit testing and selenium IDE to record actions that need to be tested.
So my question is can i verify the links in a loop or i need to try every link on my own?
i tried to do this with __iter__ but it didn’t get any close ,there may be a reason that i’m poor at oop, but i still think that there must me another way of testing links than clicking them and recording one by one.
I’m tryng to verify if all my page links are valid , and also
Share
I would just use standard shell commands for this:
links
then scan the resulting files with
grep --files-without-matchto find thosethat don’t have a contact link.
If you’re on windows, you can install cygwin or install the win32 ports of these tools.
EDIT: Embed Info from the
use wget to detect broken linkslink above: