摘要: # 指定Chromedriver路径 driver_path = r"F:\1\Python39\chromedriver90.exe" option = webdriver.ChromeOptions() # 指定Chrome浏览器路径 option.binary_location = r"C:\ 阅读全文
posted @ 2022-08-23 01:20 辛梓 阅读(58) 评论(0) 推荐(0) 编辑
摘要: :root { --control-text-color: #777; --select-text-bg-color: rgba(223, 197, 223); /*#7e66992e;*/ /* side bar */ --side-bar-bg-color: rgb(255, 255, 255) 阅读全文
posted @ 2022-08-21 04:56 辛梓 阅读(30) 评论(0) 推荐(0) 编辑
摘要: 1. 实现chrome谷歌浏览器多开(独立环境 独立cookie) https://zhuanlan.zhihu.com/p/450807702 https://www.runoob.com/redis/redis-hashes.html 阅读全文
posted @ 2022-07-03 12:46 辛梓 阅读(25) 评论(0) 推荐(0) 编辑
摘要: "markdown.styles": [ "E:\\VS_code\\Github\\css\\purple.css" ] 替换字符串: sed 's/book/books/g' file 选各目录下用例列表 #!/bin/sh module=local_index test="scripts\/$ 阅读全文
posted @ 2017-03-05 11:04 辛梓 阅读(151) 评论(0) 推荐(0) 编辑
摘要: TEST_F(FooTest, MethodBarDoesAbc) { const std::string input_filepath = "this/package/testdata/myinputfile.dat"; const std::string output_filepath = "t 阅读全文
posted @ 2020-11-11 00:44 辛梓 阅读(83) 评论(0) 推荐(0) 编辑
摘要: :root { --control-text-color: #777; --select-text-bg-color: rgba(223, 197, 223); /*#7e66992e;*/ /* side bar */ --side-bar-bg-color: rgb(255, 255, 255) 阅读全文
posted @ 2020-11-09 13:28 辛梓 阅读(62) 评论(0) 推荐(0) 编辑
摘要: #include <iostream> #include <stdio.h> #include <stdlib.h> #include <sys/time.h> #include <unistd.h> using namespace std; int main() { // 1. // struct 阅读全文
posted @ 2020-11-08 10:17 辛梓 阅读(749) 评论(0) 推荐(0) 编辑
摘要: TCP协议 1.OSI与TCP/IP各层的结构和功能,协议和作用。 OSI七层模型对应TCP/IP四层模型,只是分法不同而已。 应用层:提供应用层服务,文件传输(FTP),电子邮件(SMTP), 主要的协议还有HTTP(超文本传输协议),DNS,和telnet 表示层:用于数据格式化,代码转换,数据 阅读全文
posted @ 2019-04-21 21:46 辛梓 阅读(11393) 评论(0) 推荐(0) 编辑
摘要: 一、sigmoid函数 Sigmoid函数由下列公式定义 其对x的导数可以用自身表示: Sigmoid 函数表 Sigmoid 曲线 Sigmoid函数的级数表示 阅读全文
posted @ 2017-09-10 13:44 辛梓 阅读(152) 评论(0) 推荐(0) 编辑
摘要: 一、判断正误题 1、测试是证明软件正确的方法。(×) 2、测试中应该对有效和无效、期望和不期望的输入都要测试。(√) 3、对于连锁型分支结构,若有n个判定语句,则有2n条路径。(√) 4、GOTO语句概念简单,使用方便,在某些情况下,保留GOTO语句反能使写出的程序更加简洁。(√) 5、黑盒测试也称 阅读全文
posted @ 2017-09-09 16:19 辛梓 阅读(606) 评论(0) 推荐(0) 编辑
摘要: #!/bin/sh for((i=1;i<3;i++)) do testcase_path=/home/houjia/R3_refactor/GMDBV3_Test/scripts/R2_schema/R2_schema_00$i/R2_schema_00$i.py sed -i "s/111/test/g" $testcase_path done 阅读全文
posted @ 2017-09-02 16:32 辛梓 阅读(97) 评论(0) 推荐(0) 编辑