When you give an element an id attr, it will automaticlly create a object with the same name of id: <form id="theform" action="/" method="post"> <labe ...
分类:
Web程序 时间:
2020-02-25 09:23:13
阅读次数:
65
aa=wd.find_elements_by_xpath('//a') for a in aa: print(a.text) #显示所有A标签中文本 aa=wd.find_elements_by_xpath('//a') for a in aa: print(a.get_attribute("hre ...
分类:
Web程序 时间:
2020-02-24 20:40:56
阅读次数:
65
https://www.acwing.com/problem/content/1326/ 思路: 枚举起点 正反方向 如果满足.输出 #include <bits/stdc++.h> using namespace std; int n; int g[16][16]; int dx[4] = {-1 ...
分类:
其他好文 时间:
2020-02-24 20:22:44
阅读次数:
94
首先RouteConfig配置文件RegisterRoutes方法添加以下代码: routes.MapMvcAttributeRoutes(); Controller Aciont 加 [Route("new/{id:long:min(1)}.html"), HttpGet] 在web.config ...
分类:
Web程序 时间:
2020-02-24 15:13:49
阅读次数:
96
添加用户报错,无法打开/etc/passwd文件 [root@backup ~]# useradd 123456 useradd: cannot open /etc/passwd 此问题是 chattr +i /etc/passwd吧文件属性改了, 可以使用chattr -i来还原配置。 chatt ...
分类:
其他好文 时间:
2020-02-24 13:24:52
阅读次数:
76
1.form表单提交弹出自定义异常 示例: <form id="pagerForm" method="post" action="后台访问地址" class="pageForm required-validate" onsubmit="return validateCallback(this,dia ...
分类:
其他好文 时间:
2020-02-23 16:18:55
阅读次数:
93
macos系统打开移动硬盘的视频时,提示“已被macOS使用”,按照查找的方法设置,用编辑命令行的方式,可以成功,但是下一次再次访问硬盘时,同一个文件同样的问题又再次出现。所以找了一次性解决的问题。 os版本 10.15 完整步骤: 1.创建自动操作 Automator--服务--选定:文件或文件价 ...
分类:
系统相关 时间:
2020-02-23 14:57:53
阅读次数:
914
图片压缩的方法 // 图片压缩 compressImage(file, success, error) { // 图片小于1M不压缩 // if (file.size < Math.pow(1024, 2)) { // return success(file); // } const name = ...
分类:
Web程序 时间:
2020-02-22 15:48:37
阅读次数:
82
前提: 1.安装必要工具(node等); 2.安装全局vue-cli脚手架(快速搭建vue开发模板) 命令:npm install -g vue-cli 3.安装webpack 命令:npm install webpack -g (有问题可以使用npm install --save-dev webp ...
分类:
Web程序 时间:
2020-02-22 12:21:52
阅读次数:
99
Description: Failed to configure a DataSource: 'url' attribute is not specified and no embedded datasource could be configured. Reason: Failed to dete ...
分类:
编程语言 时间:
2020-02-21 12:36:39
阅读次数:
71