redis数据库 Redis是一款开源的,ANSI C语言编写的,高级键值(key-value)缓存和支持永久存储NoSQL数据库产品。 Redis采用内存(In-Memory)数据集(DataSet) 。 支持多种数据类型。 运行于大多数POSIX系统,如Linux、*BSD、OS X等。 作者:... ...
分类:
其他好文 时间:
2019-05-10 17:52:56
阅读次数:
276
在介绍WebDriverWait之前,先说一下,在selenium中的两种等待页面加载的方式,第一种是隐式等待,在webdriver里面提供的implicitly_wait()方法,driver.implicitly_wait(30) #单位:秒第二种是显示等待,是在support/wait中的We ...
分类:
Web程序 时间:
2019-05-03 13:07:00
阅读次数:
172
from appium import webdriver from selenium.webdriver.support.ui import WebDriverWait from selenium.webdriver.support import expected_conditions as EC ... ...
分类:
移动开发 时间:
2019-04-30 12:28:44
阅读次数:
270
You are a member of the space station engineering team, and are assigned a task in the construction process of the station. You are expected to write ...
分类:
其他好文 时间:
2019-04-30 01:15:11
阅读次数:
117
问题解决方法 执行命令 php artisan cache:clear 并赋予 /storage 文件夹读写权限: chmod -R 777 storage; 若在执行 php artisan cache:clear 时出现错误:Uncaught UnexpectedValueException: ...
分类:
其他好文 时间:
2019-04-29 12:17:37
阅读次数:
281
今天使用vscode 编写java代码做测试时候,发现这个问题,大概总结一下。 目录结构 bao -> Point.java test.java 编译报错:The declared package does not match the expected package bao Java 大概的原因是 ...
分类:
编程语言 时间:
2019-04-28 15:40:15
阅读次数:
418
在建线程池过程当中遇见上图所示错误; 解决方法: Linux中定义: SYNOPSIS #include <pthread.h> void pthread_cleanup_push(void (*routine)(void *),void *arg); void pthread_cleanup_po ...
分类:
编程语言 时间:
2019-04-26 00:07:41
阅读次数:
271
近期在捯饬spring的注解,现将遇到的问题记录下来,以供遇到同样问题的童鞋解决~ 先说明下场景,代码如下: 有如下接口: 同时有下述两个实现类 EmployeeServiceImpl和EmployeeServiceImpl1: 调用代码如下: 在启动tomcat时报如下错误: 其实报错信息已经说得 ...
分类:
编程语言 时间:
2019-04-25 11:48:00
阅读次数:
169
Selenium 入门到精通系列 PS:显式等待、隐式等待、强制等待方法 例子 ...
分类:
其他好文 时间:
2019-04-23 19:24:53
阅读次数:
166
运行测试案例,看到errors为0,还以为稳了,结果看数据库信息,却没有更新。 回来查看, 出现问题java.lang.AssertionError: expected:<1> but was:<0> console信息如下: 与数据库对应后再运行。稳了。 ...
分类:
数据库 时间:
2019-04-22 22:40:39
阅读次数:
566