码迷,mamicode.com
首页 >  
搜索关键字:keys    ( 2756个结果
9. 处理alert/confirm/prompt
webdriver中处理原生的js alert confirm 以及prompt是很简单的。具体思路是使用switch_to.alert()方法定位到alert/confirm/prompt。然后使用text /accept/dismiss/send_keys按需进行操做text。返回alert/c...
分类:其他好文   时间:2014-07-23 15:46:09    阅读次数:261
linux 上备份 web 站点的脚本。
[root@redhatscript]#catback_web.sh #!/bin/bash #usescpnotusepassword.sodoit-->#ssh-keygen-trsa-->scp-p.ssh/id_rsa.pubroot@机器B的IP:/root/.ssh/authorized_keys #mkdir&gotobackup ##################################### #backupweb myPath="/var/web_ba..
分类:Web程序   时间:2014-07-23 00:29:58    阅读次数:239
Custom & Eclipse shortcuts key bindings for Sublime Text 2
[{ "keys": ["f12"], "command": "htmlprettify"},{ "keys": ["f1"], "command": "fold" },{ "keys": ["f2"], "command": "unfold" },{ "keys": ["ctrl+l"], "co...
分类:系统相关   时间:2014-07-22 22:43:14    阅读次数:526
ruby hashtable散列表
dict={'cat'=>'abc','dog'=>'def'}puts dict.sizedict.keys返回所有的key,values返回所有的value。删除:dict.delete('cat')有条件地删除x={'a'=>100,'b'=>20}x.delete_if{|key,value...
分类:其他好文   时间:2014-07-19 20:30:46    阅读次数:238
Redis 二:入门基本篇
1.多数据库设置select 0 - 15 ,代表16个数据库2.glob风格通配符set bar 1set btt 2keys * 返回所有keys ba? 返回 barkeys b[a-z][a-z] 返回btt bar\x 匹配转义字符3.判断一个键是否存在exists bar ,存在返回1否...
分类:其他好文   时间:2014-07-19 19:24:39    阅读次数:247
HashMap 的遍历key与value的方法 .
HashMap最常用的用法是根据key增删改查value,有时候会需要知道一个HashMap有多少个keys以及这些keys都是什么,可以用下面的代码实现。...
分类:其他好文   时间:2014-07-19 02:21:45    阅读次数:170
SUBLIME TEXT 2中,光标移入移出括号的快捷键设置
无赖右方向键→和End键都在键盘的另一边,每次输入完一个函数,光标在各种括号中间,有什么更好的方式将光标移出来呢?在Sublime Text 2中,我们可以自己设置快捷键: { "keys": ["ctrl+alt+space"], "command": "move", "args": {"by":...
分类:其他好文   时间:2014-07-17 17:28:58    阅读次数:228
WPF TextBox 控件获取热键并转为 win32 Keys
WPF 中使用的 Key 对象与 WinForm 中的 Keys 不同,两者的按键枚举对象与物理键的映射关系有功能键上有区别,无法进行类型强制转换。使用 win api 注册热键时,需要将之转换成 win32 的键值,可以使用 KeyInterop.VirtualKeyFromKey(),另外,Keys 可以保存组合鍵,Key 则只是单个按键。Keys 的成员中有个 Modifiers,从下图可以...
分类:Windows程序   时间:2014-07-16 08:07:54    阅读次数:332
Looping and dictionaries
If you use a dictionary in a for statement, it traverses the keys of the dictionary. For example, print_hist prints each key and the corresponding val...
分类:其他好文   时间:2014-07-15 23:43:56    阅读次数:527
json 转 hash(MultiJson)
require 'multi_json'MultiJson.load('{"abc":"def"}') #=> {"abc" => "def"}MultiJson.load('{"abc":"def"}', :symbolize_keys => true) #=> {:abc => "def"}Mu...
分类:Web程序   时间:2014-07-14 19:05:34    阅读次数:246
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!