E:\wamp\www\save\tp5_composer\thinkphp\tests>..\vendor\bin\phpunit.bat --bootstrap mock.php thinkphp\library\think\log\driver\fileTest.php 执行结果: PHPUn
分类:
Web程序 时间:
2016-02-18 10:02:00
阅读次数:
1454
1.真实机第一次安装必须先搞f2进入boot从光盘启动,虚拟机不用进入的时候五个选项Install or upgrade an existing system:安装或升级现有系统Install system with basic video driver:安装过程采用基本的显卡驱动Rescue in
分类:
系统相关 时间:
2016-02-17 17:15:36
阅读次数:
287
我的centos7是liveCD的镜像,装好了之后去vbox官方下载了一个rpm包并安装。创建了虚拟机,启动时报错:kerneldrivernotinstalled(rc=-1908)这个问题需要重新编译vbox的内核模块然后安装提示root身份执行了/sbin/rcboxdrvsetup然后报错:Badargumentsetupgoogle之后找到解决方法..
分类:
其他好文 时间:
2016-02-17 00:56:42
阅读次数:
746
在写appium代码的时候,有的人想使用wait方法,写成:driver.wait(),结果抛出异常:IllegalMonitorStateException,看了appium client的api文档,关于wait方法是这么写的: public final void wait() throws I
分类:
移动开发 时间:
2016-02-16 20:43:28
阅读次数:
510
AAAbstractFlow() public void getComputerNameOfNode(WebDriver driver){ String CIHub = Environment.getHub(); String hub = (CIHub.split("//")[1].split(":
分类:
其他好文 时间:
2016-02-16 16:22:38
阅读次数:
128
原因: 1. 调试时usb连接模式需要设置为ptp模式。 2. 没有安装adb interface驱动。 解决方法: 1. 将usb连接模式设置为ptp模式。 2. 使用Android device manager下载google usb driver。 3. 打开设备管理器,右键带黄色感叹号的ad
分类:
移动开发 时间:
2016-02-16 14:55:38
阅读次数:
175
WM_DEVICECHANGE消息 查阅MSDN得知: The framework calls this member function to notify an application or device driver of a change to the hardware configurati
分类:
编程语言 时间:
2016-02-16 11:43:04
阅读次数:
564
package com.atguigu.jdbc; import java.io.IOException;import java.io.InputStream;import java.sql.Connection;import java.sql.Driver;import java.sql.SQLE
分类:
数据库 时间:
2016-02-16 11:32:22
阅读次数:
233
public void clickDateDropDownButton() { SeleniumUtil.jsClick(driver, page.getDateDropdownButtonOfInvPolicyDialog()); WebElement dropDown = page.getDro
分类:
编程语言 时间:
2016-02-15 13:34:27
阅读次数:
186
JDBC的一般流程: 1. 加载某个数据库的驱动(Driver类),通常使用Class.forName(“驱动的类名“); 2. 连接数据库―― Connection con = DriverManager.getConnection(url,username,password); 3. 得到会话―
分类:
数据库 时间:
2016-02-14 14:09:13
阅读次数:
225