RSpec 2 查看测试以验证可访问标记?

发布于 2024-12-01 09:34:16 字数 247 浏览 2 评论 0原文

我想在 RSpec 中进行一些基本的可访问性测试(显然,稍后由其他工具和用户进一步验证;这是为了抓住容易实现的目标,例如查找没有 alt 标签的图像等)

大多数示例都只是检查内容是否存在类似;我想要做的是获取标签列表,然后断言找到的“所有”标签都满足特定条件(例如,所有图像都必须有 alt 或 longdesc;每个表单输入需要标签或标题, ETC)。

RSpec 可以做到这一点吗?如果不能,是否有工具可以做到这一点?

谢谢。

I want to make some basic accessibility tests in RSpec (obviously, to be further validated by other tools and users later; this is to catch the low-hanging fruit like finding images w/o alt tags and such)

Most of the examples have just checking content is present is similar; what I want to do is get a list of tags, and then make assertions that "all" the tags found meet certain criteria (e.g. all images have to have either an alt or a longdesc; each form input needs either a label or title, etc).

Can RSpec do this, or if not, is there a tool that can?

Thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

拥有 2024-12-08 09:34:16

您可以使用 webrat 来测试视图规范上的 XPath 选择器:

describe 'my/view.html.erb' do
  it 'should not have images without alt or longdesc attributes' do
    render
    rendered.should_not have_xpath('//img[not(@alt) and not(@longdesc)]')
  end
end

Capybara 也支持 XPath 选择器。

You can use webrat to test for XPath selectors on your view specs:

describe 'my/view.html.erb' do
  it 'should not have images without alt or longdesc attributes' do
    render
    rendered.should_not have_xpath('//img[not(@alt) and not(@longdesc)]')
  end
end

Capybara supports XPath selectors, too.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文