如果想从头学起Cypress,可以看下面的系列文章哦 https://www.cnblogs.com/poloyy/category/1768839.html 作用 在浏览器历史记录中,访问前一个或后一个 URL 语法格式 cy.go(direction) cy.go(direction, opti ...
分类:
其他好文 时间:
2020-06-21 19:45:19
阅读次数:
66
cd /etc/yum.repos.d vim CentOS-Debuginfo.repo enable = 1 yum install glibc debuginfo-install glibc.x86_64 0:2.17-307.el7.1 ...
分类:
数据库 时间:
2020-06-21 17:52:26
阅读次数:
108
u-boot关于SPL有三个配置项,CONFIG_SUPPORT_SPL、CONFIG_SPL和CONFIG_SPL_BUILD,其中CONFIG_SUPPORT_SPL和CONFIG_SPL在Kconfig中定义,如下: config SUPPORT_SPL bool config SUPPORT ...
分类:
其他好文 时间:
2020-06-21 10:07:01
阅读次数:
151
一、技术总结 即判断给出一串数字中缺少的最小正整数 直接可以遍历判断n个数字中是否在一串数字中是否出现,如果没有直接输出 但是会出现一种情况,是恰好给出的数字是1~n,这是需要再判断一下了遍历的次数是否等于n,如果是的话直接输出n+1 二、参考代码 #include<iostream> #inclu ...
分类:
其他好文 时间:
2020-06-20 22:22:15
阅读次数:
64
嵌入式Linux系统添加通用USB接口的打印机功能,主要包括以下三步。 一.内核添加USB接口的通用打印机识别驱动 在make menuconfig 编译菜单项选上USB打印机选项: Device Drivers > [*] USB support > <*> USB Printer support ...
分类:
系统相关 时间:
2020-06-20 19:32:28
阅读次数:
251
Virtual memory and Pagefile 32位的Windows 参考https://support.microsoft.com/en-us/help/2160852/ram-virtual-memory-pagefile-and-memory-management-in-window ...
分类:
其他好文 时间:
2020-06-20 16:46:08
阅读次数:
46
1. urllib3.exceptions.MaxRetryError(HTTPConnectionPool:Max retries exceeded with url) 报错信息: 参考http://neo4j.com.cn/topic/5ec5d5f25426e67e5afcf792 解决方案: ...
分类:
其他好文 时间:
2020-06-20 01:07:09
阅读次数:
385
通过查看 SHOW ENGINES; 或 SHOW VARIABLES LIKE 'have%'; 的输出来查看但前的mysql版本是否支持这个引擎。 mysql> show engines; + + + + + + + | Engine | Support | Comment | Transact ...
分类:
数据库 时间:
2020-06-19 01:12:04
阅读次数:
140
代码: #coding=utf-8 import requests import json url='http://127.0.0.1:4444/wd/hub/session' data = json.dump({ 'Capabilities':{ 'browserName':'Edge' } }) ...
分类:
其他好文 时间:
2020-06-18 01:24:39
阅读次数:
225
# coding:utf-8from selenium import webdriverfrom selenium.webdriver.common.action_chains import ActionChainsfrom selenium.webdriver.support.select imp ...
分类:
其他好文 时间:
2020-06-17 13:05:32
阅读次数:
54