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