错误提示: selenium.common.exceptions.SessionNotCreatedException: Message: Unable to find a matching set of capabilities 原因: 这是因为火狐浏览器版本与geckodriver驱动版本不匹配 ...
分类:
编程语言 时间:
2019-04-24 00:37:34
阅读次数:
135
# =================================================================== # COMMON SPRING BOOT PROPERTIES # # This sample file is provided as a guideline.... ...
分类:
编程语言 时间:
2019-04-21 13:05:41
阅读次数:
113
cmd输入安装selenium指令: 1.报错 Could not find a version that satisfies the requirement selenium (from versions: )No matching distribution found for selenium ...
分类:
其他好文 时间:
2019-04-20 13:04:20
阅读次数:
374
题目链接:https://leetcode-cn.com/problems/regular-expression-matching/这道题用到了动态规划:关于动态规划请参考这篇博文:https://blog.csdn.net/u013309870/article/details/75193592写的... ...
分类:
其他好文 时间:
2019-04-18 22:07:20
阅读次数:
193
Regular Expression Matching 问题简介:给定字符串,给定匹配模式,判断字符串是否满足匹配模式 问题详解:一共有两种特殊模式: ‘.’ 匹配任何单个字符 ‘*’ 匹配前面元素的零个或多个 注:匹配的是整个给定字符串,不是部分 举例: 1: 输入: s = “aa” p = “ ...
分类:
其他好文 时间:
2019-04-15 23:36:03
阅读次数:
321
The key of Kmp is to build a look up table that records the match result of prefix and postfix. Value in the table means the max len of matching subst ...
分类:
其他好文 时间:
2019-04-15 17:56:46
阅读次数:
160
(xiao)[python@python1web]$pipinstallmysqldbCollectingmysqldbCouldnotfindaversionthatsatisfiestherequirementmysqldb(fromversions:)Nomatchingdistributionfoundformysqldb(xiao)[python@python1web]$pipinsta
分类:
数据库 时间:
2019-04-15 14:43:37
阅读次数:
803
E. Maximum Matching time limit per test 2 seconds memory limit per test 256 megabytes input standard input output standard output E. Maximum Matching ...
分类:
其他好文 时间:
2019-04-09 16:32:02
阅读次数:
101
如果将token保存在cookie,axiso请求默认是不带cookie请求,提供两种方案: 方案一:添加自定义请求头 会引发问题:在跨域时会出现options请求,解决方案后端过滤掉options请求(options请求是获取不到自定义头部信息的) 方法二:启用跨域时需要使用凭证 会引发问题: T ...
分类:
其他好文 时间:
2019-04-08 16:03:13
阅读次数:
431
1.2 前言部分 1.2.1 导读和注意事项 各位技术爱好者,看完本文后,你可以掌握如下的技能,也可以学到一些其它你所不知道的知识,~O(∩_∩)O~: ① 告警日志中频繁出现Using deprecated SQLNET.ALLOWED_LOGON_VERSION parameter、ORA-28 ...
分类:
其他好文 时间:
2019-04-04 20:17:47
阅读次数:
187