for link in driver.find_elements_by_css_selector("tr:nth-child(1) > td.taskStatus use"): assert_status = link.get_attribute('xlink:href') print(assert ...
分类:
编程语言 时间:
2021-06-07 20:49:35
阅读次数:
0
.vscode/tasks.json { // See https://go.microsoft.com/fwlink/?LinkId=733558 // for the documentation about the tasks.json format "version": "2.0.0", "t ...
分类:
编程语言 时间:
2021-06-07 20:25:28
阅读次数:
0
cURL is one of most powerful tools for testing HTTP traffic. We typically use cURL to interact with HTTP APIs or test websites. Although cURL supports ...
分类:
Web程序 时间:
2021-06-07 20:18:30
阅读次数:
0
create database zuoye; -- 创建数据库 use zuoye; -- 使?数据库 #创建?个库表 create table Student -- 学?表 ( Sno char(3) NOT NULL Primary key , -- 学号 ,设为主键,不允许空值 Sname c ...
分类:
数据库 时间:
2021-06-07 19:59:03
阅读次数:
0
import yamailusername = "xxxxxx@qq.com"password = "xxxxxx"host = "smtp.qq.com"# host = "smtp.163.com" #163# host = "smtp.126.com" #qq# smtp.send(to="a ...
分类:
编程语言 时间:
2021-06-06 19:32:03
阅读次数:
0
? 影院管理项目 组建一个家庭影院: DVD播放器、投影仪、自动屏幕、环绕立体声、爆米花机,要求完成使用家庭影院的 功能,其过程为: ? 直接用遥控器:统筹各设备开关 ? 开爆米花机 ? 放下屏幕 ? 开投影仪 ? 开音响 ? 开DVD,选dvd ? 去拿爆米花 ? 调暗灯光 ? 播放 ? 观影结束 ...
分类:
其他好文 时间:
2021-06-05 18:36:02
阅读次数:
0
今天学习了MFC中拆分窗口,现将方法记录下. 想要在窗口视图中拆分成左右两个视图窗口,首先要注意的是拆分后要加载到左右的视图要符合动态创建的类, 也就是要在自己创建的视图类中添加动态创建机制宏. 类内声明宏: DECLARE_DYNCREATE(CSelectView) //CSelectView为 ...
分类:
编程语言 时间:
2021-06-05 17:47:03
阅读次数:
0
create database zuoye; -- 创建数据库 use zuoye; -- 使用数据库 #创建几个库表 create table Student -- 学生表 ( Sno char(3) NOT NULL Primary key , -- 学号 ,设为主键,不允许空值 Sname c ...
分类:
数据库 时间:
2021-06-05 17:46:33
阅读次数:
0
###yum安装依赖包 yum -y install libaio ###下载mysql_8.x版本rpm包 wget http://repo.mysql.com/mysql80-community-release-el7-1.noarch.rpm ###安装mysql_yum源 yum local ...
分类:
数据库 时间:
2021-06-04 19:54:22
阅读次数:
0
如何在Linux下删除文件名是乱码或者带有特殊字符的文件。 今天遇到一个问题,一个文件名是“ (-++=$^__.log”,直接用rm删除的时候就报错,有些文件是可以用rm删除的 开始想着带引号删,发现带引号删除也一样报illegal option的错 先ls -i 查到文件的inode,然后用fi ...
分类:
其他好文 时间:
2021-06-04 19:46:37
阅读次数:
0