一、前言 个人购买了阿里云服务器,配置好远程连接密码和登陆密码后,使用iTerm2终端ssh root@ip,每次都需要输入密码,实在是麻烦。 ssh免密登陆,其实就是将本机的公钥存到服务器上,authorized_keys文件是Linux系统默认生成的用来保存远程登录设备的公钥。初始时为空,在.s ...
分类:
系统相关 时间:
2020-04-25 01:01:51
阅读次数:
115
Suppose that all the keys in a binary tree are distinct positive integers. A unique binary tree can be determined by a given pair of postorder and ino ...
分类:
其他好文 时间:
2020-04-24 13:10:38
阅读次数:
61
Redis的五大数据类型 key指令(非数据类型) keys 查看所有的key exists key的名字 查看某个key是否存在 move key db 将某个key及对应的值从当前库移动到某个库 expire key 秒钟 设置key的过期时间(过期不代表删除 仍然存在库中) ttl key 查 ...
分类:
其他好文 时间:
2020-04-24 10:29:51
阅读次数:
65
python基础语法2字典的get方法字典 get() 函数返回指定键的值,如果值不在字典中返回默认值。 key – 字典中要查找的键。 default – 如果指定键的值不存在时,返回该默认值值。 遍历字典for key, value in dict.items():字典键 dict.keys() ...
分类:
编程语言 时间:
2020-04-23 21:19:03
阅读次数:
69
package rjcs; import org.openqa.selenium.By; import org.openqa.selenium.Keys; import org.openqa.selenium.WebElement; import org.openqa.selenium.firefo ...
分类:
编程语言 时间:
2020-04-22 13:38:10
阅读次数:
80
Suppose that all the keys in a binary tree are distinct positive integers. A unique binary tree can be determined by a given pair of postorder and ino ...
分类:
其他好文 时间:
2020-04-22 12:51:03
阅读次数:
65
迅雷号自媒体视频文件自动上传,贴标签发布 难点 本地文件上传,通过send_keys(‘文件路径’)的方式实现上传的目的 文件名通过正则匹配的方式进行处理,主要匹配出中文标题名称 处理过程中文件名称中包括中文字符,特殊字符,数字等 视频文件上传是否完成的判断,视频上传的进度条通过js加载,在上传的过 ...
分类:
编程语言 时间:
2020-04-22 09:18:26
阅读次数:
73
转自https://segmentfault.com/a/1190000016885832?utm_source=tag-newest#item-11 React 中 keys 的作用是什么? Keys 是 React 用于追踪哪些列表中元素被修改、被添加或者被移除的辅助标识。 render () ...
分类:
其他好文 时间:
2020-04-20 00:53:58
阅读次数:
58
#上传文件使用send_keys方法添加本地文件 <html> <head> <meta http-equiv="content-type" content="text/html;charset=utf-8" /> <title>upload_file</title> <script type="t ...
分类:
编程语言 时间:
2020-04-17 12:47:06
阅读次数:
86
键盘操作需要使用send_keys()进行输入 driver.find_element_by_id(元素id).send_keys(输入的内容,Keys.ENTER)如下: send_keys(Keys.ENTER) Enter键 send_keys(Keys.CANCEL,'a') CANCEL+ ...
分类:
Web程序 时间:
2020-04-15 11:17:06
阅读次数:
96