teggno / azure-pipelines-website-validator

An Azure Pipelines extension containing tasks to validate websites. Tests web pages for broken links and compliance.
3 stars 3 forks source link

broken link not found #1

Open bqstony opened 4 years ago

bqstony commented 4 years ago

i have some broken link on my website. but it was not found.

this is my result

2020-09-16T09:37:57.9204347Z ##[section]Starting: Check preview.mbc-engineering.ch for broken links 2020-09-16T09:37:57.9212258Z ============================================================================== 2020-09-16T09:37:57.9212632Z Task : Broken Link Checker 2020-09-16T09:37:57.9212995Z Description : Test a web site for broken links. 2020-09-16T09:37:57.9213250Z Version : 0.0.5 2020-09-16T09:37:57.9213486Z Author : Christian Bär 2020-09-16T09:37:57.9214474Z Help : Recursively test the pages of a web site for broken links. Provide a base URL and see the results in the build log. 2020-09-16T09:37:57.9215005Z ============================================================================== 2020-09-16T09:37:59.0251782Z (node:2432) Warning: Use Cipheriv for counter mode of aes-256-ctr 2020-09-16T09:37:59.0280391Z (node:2432) Warning: Use Cipheriv for counter mode of aes-256-ctr 2020-09-16T09:37:59.0281625Z (node:2432) Warning: Use Cipheriv for counter mode of aes-256-ctr 2020-09-16T09:37:59.0282251Z (node:2432) Warning: Use Cipheriv for counter mode of aes-256-ctr 2020-09-16T09:37:59.0282983Z (node:2432) Warning: Use Cipheriv for counter mode of aes-256-ctr 2020-09-16T09:37:59.0285324Z ##[section]Finishing: Check preview.mbc-engineering.ch for broken links

i expect somting like this: image

this are my settings:

steps:
- task: teggno.website-validator.broken-link-checker.broken-link-checker@0
  displayName: 'Check preview.mbc-engineering.ch for broken links'
  inputs:
    baseurl: 'preview.mbc-engineering.ch'
    headOrGet: get
teggno commented 4 years ago

Thank you for your report. I've just visited preview.mbc-engineering.ch. Can you guide me to one of the broken links? Or paste one here? Otherwise it's difficult to analyze the issue.

bqstony commented 4 years ago

Here the html part with the first broken link

<p>You have the hardware - we create the fitting Software. As specialists in software engineering we develop complete solutions, customised to fit your needs. With us you don’t take any risks: you own and can access all development outcomes. The tools and standards we use are diverse. From our main frameworks .NET and JAVA we also work with LabView, Pytho through to web technologies and SQL. We are continually extending our repertoire of services with purposeful tools. Find out more about our <a href="/en/technology">technologies</a> or take a look at our <a href="/en/project">reference projects</a> in software engineering.</p>

technologies is a relative path on the page

is this helpfull?