上一页 1 2 3 4 5 6 7 8 9 10 ··· 17 下一页
摘要: pyhon 调selenium报: selenium.common.exceptions.SessionNotCreatedException: Message: session not created: This version of ChromeDriver only supports Chro 阅读全文
posted @ 2023-12-06 15:32 ziff123 阅读(381) 评论(0) 推荐(0) 编辑
摘要: 1、打开PowerShell,输入以下命令,该命令会创建一个证书,并颁发给localhost New-SelfSignedCertificate -certstorelocation cert:\localmachine\my -dnsname localhost -NotAfter 2060-01 阅读全文
posted @ 2023-11-20 09:15 ziff123 阅读(259) 评论(0) 推荐(0) 编辑
摘要: /// <summary> /// INI文件读写类。 /// </summary> public class INIFile { public string path; public INIFile(string INIPath) { path = INIPath; } [DllImport("k 阅读全文
posted @ 2023-10-25 16:04 ziff123 阅读(39) 评论(0) 推荐(0) 编辑
摘要: 一、typeScript安装以及基础编译 npm i -g typescript 安装完,进入ts文件的项目目录下,在命令行执行 tsc hello.ts(hello.ts是ts文件,执行这个命令可以把ts文件编译为hello.js文件) tsc hello.ts 这个命令,ts文件里的代码每改变一 阅读全文
posted @ 2023-10-13 17:35 ziff123 阅读(1032) 评论(0) 推荐(0) 编辑
摘要: #region 向当前活动文本框输入文字 /// <summary> /// 向当前活动文本框输入文字 /// new SendMsg().SendText("你要输入的字符串"); /// </summary> public class SendMsg { [DllImport("user32.d 阅读全文
posted @ 2023-10-13 17:05 ziff123 阅读(141) 评论(0) 推荐(0) 编辑
摘要: 1、查看串口 ls -l /dev/ttyACM0 crw-rw 1 root dialout 166, 0 5月 24 17:17 /dev/ttyACM0 2、可以看到用户 (owner 是 root)而所属用户组为 dialout, 因此一种方法是把我们的登陆账号加入到这个用户组。 查看系统用 阅读全文
posted @ 2023-09-19 10:29 ziff123 阅读(963) 评论(0) 推荐(0) 编辑
摘要: 1、确保已经安装了 Node.js 和 npm。 2、在你的 Electron 项目目录下,执行以下命令安装 electron-debug: npm install --save-dev electron-debug 3、修改主进程(main process)的启动代码(通常在 main.js 文件 阅读全文
posted @ 2023-09-15 11:37 ziff123 阅读(362) 评论(0) 推荐(0) 编辑
摘要: 1、项目结构: 2、前端: a、index.html <!DOCTYPE html> <html> <head> <title> WebRTC demo </title> </head> <body> <h1> WebRTC Demo </h1> <div id="buttons"> <input 阅读全文
posted @ 2023-09-11 17:41 ziff123 阅读(20) 评论(0) 推荐(0) 编辑
摘要: webRTC报“OperationError: Failed to execute 'setLocalDescription' on 'RTCPeerConnection': Failed to set local offer sdp: Called in wrong state: have-rem 阅读全文
posted @ 2023-09-07 09:01 ziff123 阅读(399) 评论(0) 推荐(0) 编辑
摘要: 一、概念 Node.js WebSocket是一个用于建立实时双向通信的模块。WebSocket协议允许服务器与客户端之间进行全双工通信,其API使用了事件驱动和流式的方式。 二、客户端 <!DOCTYPE html> <html> <head> <script src="http://libs.b 阅读全文
posted @ 2023-08-24 17:55 ziff123 阅读(52) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 9 10 ··· 17 下一页