我正在使用IE进行测试,并使用元素的id来识别它们。现在我正在尝试支持Firefox,但似乎对于同一个元素,IE中有一些没有id。例如,在此网站上:
https://www.canada.ca/en/services/benefits/publicpensions/cpp/retirement-income-calculator.html
底部按钮'报告此页面上的问题或错误',如果我在IE中检查元素,我会得到以下内容:
<summary tabindex="0" class="btn btn-default text-center wb-init wb-details-inited" id="wb-auto-12" role="button" aria-expanded="false">Report a problem or mistake on this page</summary>
在Firefox中,我得到:
<summary class="btn btn-default text-center">Report a problem or mistake on this page</summary>
这是否意味着对于此页面,IE正在生成ID?
我有没有办法在Firefox中获取它?