码迷,mamicode.com
首页 >  
搜索关键字:selected    ( 1606个结果
利用jQuery实现选项卡
/*Tab 选项卡 标签*/$(function(){ var $div_li =$("div.tab_menu ul li"); $div_li.click(function(){ $(this).addClass("selected") ...
分类:Web程序   时间:2015-04-29 16:51:51    阅读次数:201
Selenium2Library系列 keywords 之 _SelectElementKeywords 之 get_selected_list_values(self, locator)
1 def get_selected_list_values(self, locator): 2 """Returns the values of selected elements (as a list) from the select list identified b...
分类:其他好文   时间:2015-04-26 16:27:11    阅读次数:114
Selenium2Library系列 keywords 之 _SelectElementKeywords 之 get_selected_list_value(self, locator)
1 def get_selected_list_value(self, locator): 2 """Returns the value of the selected element from the select list identified by `locator`...
分类:其他好文   时间:2015-04-26 16:26:22    阅读次数:85
Selenium2Library系列 keywords 之 _SelectElementKeywords 之 _get_select_list_options_selected(self, locator)
1 def _get_select_list_options_selected(self, locator):2 select = self._get_select_list(locator)3 # TODO: Handle possible exceptio...
分类:其他好文   时间:2015-04-26 16:25:11    阅读次数:71
Selenium2Library系列 keywords 之 _SelectElementKeywords 之 get_selected_list_label(self, locator)
1 def get_selected_list_label(self, locator):2 """Returns the visible label of the selected element from the select list identified by `lo...
分类:其他好文   时间:2015-04-26 15:08:13    阅读次数:148
凶残的Outlook VBA Script: Outlook VBA Script that gets info on currently selected email using various Property
Option Explicit' VBA Script that gets info on the currently selected email using propertyAccessor and various syntaxes' (see other scripts at http://w...
分类:编程语言   时间:2015-04-24 15:56:14    阅读次数:262
Delphi TRzCheckTree的使用
1. 判断状态: if RzCheckTree1.Selected.StateIndex = 2 then //则为选中状态 else if RzCheckTree1.Selected.StateIndex = 1 then //则为未选中状态 else if RzCheckTree1....
分类:Windows程序   时间:2015-04-24 15:38:04    阅读次数:205
asp.net 中如何获取CheckBoxList的值
asp.net中如何获取CheckBoxList的值stringitem=string.Empty;if(CheckBoxList1.SelectedIndex==-1){Alert("请选择");return;}else{foreach(ListItemliinCheckBoxList1.Items){if(li.Selected){item+=li.Value.ToString()+",";}}Selected=Selected.Substring(0,Selected.Length-..
分类:Web程序   时间:2015-04-24 01:22:43    阅读次数:217
DevExpress WinForm GridControl 实现拖动多行到TreeView
参考文章:Drag-and-drop of multiple selected grid rows如果列表有使用行内编辑功能,需要将列表的 OptionsBehavior.EditorShowMode 属性设置为 MouseUp 或者 Click private GridH...
分类:Windows程序   时间:2015-04-23 19:19:03    阅读次数:416
[Selenium] The commonly used validation method
Assert.assertTrue(tmpEl.getAttribute("class").contains("selected"),"The folder should be highlighted.");Assert.assertFalse(dialog.isDisplayed(),button...
分类:其他好文   时间:2015-04-23 15:33:39    阅读次数:125
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!