Added tests for the inputs group

This commit is contained in:
Liam BEGUIN 2016-05-17 19:58:48 -04:00
parent b66d5e1ce9
commit ce0d23bd10

View File

@ -128,11 +128,18 @@ class SelectionAndFilterTests:
('<link href="javascript://foo" />', [webelem.Group.all,
webelem.Group.url]),
('<textarea />', [webelem.Group.all]),
('<textarea />', [webelem.Group.all, webelem.Group.inputs]),
('<select />', [webelem.Group.all]),
('<input />', [webelem.Group.all]),
('<input type="hidden" />', []),
('<input type="text" />', [webelem.Group.inputs]),
('<input type="email" />', [webelem.Group.inputs]),
('<input type="url" />', [webelem.Group.inputs]),
('<input type="tel" />', [webelem.Group.inputs]),
('<input type="number" />', [webelem.Group.inputs]),
('<input type="password" />', [webelem.Group.inputs]),
('<input type="search" />', [webelem.Group.inputs]),
('<button />', [webelem.Group.all]),
('<button href="foo" />', [webelem.Group.all, webelem.Group.prevnext,