RSpec 2 查看测试以验证可访问标记?
我想在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 webrat 来测试视图规范上的 XPath 选择器:
Capybara 也支持 XPath 选择器。
You can use webrat to test for XPath selectors on your view specs:
Capybara supports XPath selectors, too.