码迷,mamicode.com
首页 >  
搜索关键字:cannot find the requ    ( 29133个结果
vscode 报错: could not find runtime 'node' in path
安装 node.js https://nodejs.org/en/ ...
分类:其他好文   时间:2020-05-17 21:55:10    阅读次数:70
selenium——下拉框
select_ele = driver.find_element_by_xpath("//select[@name='gpc']") select = Select(select_ele) time.sleep(1) # 方式一:通过索引进行选择 select.select_by_index(3) ...
分类:其他好文   时间:2020-05-17 20:35:53    阅读次数:78
selenium——鼠标操作ActionChains:点击、滑动、拖动
from selenium.webdriver import ActionChains 1、鼠标点击 click:鼠标左击double_click:鼠标双击context_click:鼠标右击 btn = driver.find_element_by_id('su') # 第一步:创建一个鼠标操作的 ...
分类:其他好文   时间:2020-05-17 19:25:11    阅读次数:243
JS数组的find()和some()方法
var ages = [3, 10, 18, 20]; function checkAdult(age) { return age >= 18; } function myFunction() { document.getElementById("demo").innerHTML = ages.so ...
分类:编程语言   时间:2020-05-17 17:37:19    阅读次数:581
Linux文件和目录管理
本篇主要讲述: 1 目录和文件 2 目录和文件的操作(复制,删除,移动) 3 查看文件内容的命令 4 搜寻命令(which,whereis,locate,find); 5 文件内容的过滤grep; 1、目录和文件 1.1 查看及切换目录 查看当前目录:pwd(print working direct ...
分类:系统相关   时间:2020-05-17 13:38:01    阅读次数:91
2020/5/17 BUU_[BJDCTF2020]easy
先查壳: 无壳,跑一下看看: 没有输入的地方,根据这句"Can you find me?"我们大致推测,数据是被藏起来了,通过正常手法应该找不到。 拖进IDA看看,main函数并没什么用。 打开strings窗口看看,挨个点了一圈也没什么有用的数据。 最后在这个_ques函数里面找到了: 分析一波,... ...
分类:其他好文   时间:2020-05-17 13:24:41    阅读次数:68
C# DllImport 方法,出现 The system cannot find the file specified 错误
最近使用 C# 调用 dll 中的 UpdateDriverForPlugAndPlayDevices() 方法去安装驱动,遇到了 “The system cannot find the file specified” 问题, 看着错误提示,是指系统没有找到指定文件,但是我检查硬盘,该文件确实存在, ...
分类:Windows程序   时间:2020-05-16 18:45:06    阅读次数:116
find && sed
1、查找/etc目录下大于1M且类型为普通文件的所有文件2、打包/etc/目录下面所有conf结尾的文件,压缩包名称为当天的时间,并拷贝到/usr/local/src目录备份。3、利用sed取出ifconfig命令中本机的IPv4地址4、删除/etc/fstab文件中所有以#开头,后面至少跟一个空白字符的行的行首的#和空白字符5、处理/etc/fstab路径,使用sed命令取出其目录名和基名
分类:其他好文   时间:2020-05-16 17:00:08    阅读次数:79
jstree 反选,测试400条数据左右有点卡
1 $("#reversecheckallmachines").on("change", function () { 2 var checkedNodes = []; 3 var uncheckedNodes = []; 4 5 var nodes = $tree.jstree("get_json" ...
分类:Web程序   时间:2020-05-16 15:14:31    阅读次数:80
Yangk's 并查集-模板
//并查集-都要给fa赋初值!!// /*递归版路径压缩*/ const int maxn=2e5+9; int fa[maxn]; int find(int x) { return fa[x]==x?x:fa[x]=find(fa[x]); } void merge(int x,int y) { ...
分类:其他好文   时间:2020-05-16 12:36:03    阅读次数:47
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!