单选按钮是个常见的html元素,在网页中往往提供一组单选按钮来做选项. 这样在自动化测试用例中需要判断当前选中的按钮是否与预期的一直. 可以这样来操作: ${value} Get Element Attribute xpath=//form[@id='xxx']/*/input[@value='yyy']@checked 上面的关键字Get Element Attribute是获取html元素的指定属性的属性值.该关键的字的参数是 元素定位符后加上@要获取的属性名 上面例子是获取 c
做个记录,以便需要拿取 <script type="text/javascript"> $(function(){ 第一种 $('input:radio').click(function(){ //alert(this.checked); // var domName = $(this).attr('name'); var $radio = $(this); // if this was previously checked if ($radio.data('waschec