验证特定的doc是在html5 fomat中

时间:2017-06-16 13:08:28

标签: html html5 selenium w3c-validation html5test

我的文件是html5格式。如何验证文档是否采用正确的html5格式? 我不打算测试文本是否正确呈现。例如粗体/斜体/表比例等 我想验证它是否为正确的html5格式。 是否有任何测试用例我可以说特定文件是html5格式。 要将特定文档签名为html5文档,需要检查的内容/约定是什么。 是否有任何验证测试我可以通过selenium运行说明。 任何指针都表示赞赏。

e.g。这是html5代码的一部分。我如何确认1.这是html5的一部分2.验证它遵循html5约定

<table class="table" id="table1">
     <caption>
      <span class="table--title-label">Table 1</span>
      <span id="id1" class="title">Table Title</span>
     </caption>
     <colgroup>
     <col>
     </colgroup>
     <thead class="thead"> 
      <tr class="row" id="row_id"> 
      .....
      </td> 
      </tr> 
     </tbody>
    </table>

这是另一个块

<li class="link "><strong><a href="test.html">List1</a></strong><br><br>... </li>

1 个答案:

答案 0 :(得分:0)

在此处使用W3C验证器:https://validator.w3.org/

此程序将检查您的标记是否符合正确的HTML标准。确保在&#39;选项中设置文档类型。下拉列表。