自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(176)
  • 资源 (76)
  • 收藏
  • 关注

原创 selenium 要点击的元素被其他元素遮挡 or 无法找到非可视范围内的元素

selenium 无法找到非可视范围内的元素 org.openqa.selenium.StaleElementReferenceException: The element reference of。

2023-06-20 16:59:07 1342

原创 selenium Explicit 和 Implicit Waits区别

隐式等待, 此处的隐式等待是针对Driver 每次执行命令的最长执行时间也可以理解为超时时间,一些人对此处有误解,认为是让Driver等一段时间, 确实某些时候能让Driver等一段时间, 但是影响是全局的,每次Driver执行找不到元素都会等待此处设置的时间,假设某处将此值设置的太长,必须在执行完成之后还原回来,否则判断一个元素是否存在的时候,就会遇到很坑爹的问题。这里,15是要等待的秒数.如果没有满足until()方法中的条件,就会始终在这里wait 15秒,依然找不到,就抛出异常.

2023-06-20 16:54:52 729

原创 绕过登录时弹出的滑块验证

【代码】绕过登录时弹出的滑块验证。

2023-05-12 15:30:23 382

原创 python selenium 不自动关闭浏览器

【代码】python selenium 不自动关闭浏览器。

2023-05-12 15:24:35 1407

原创 install bitnami-testlink-1.9.17 Stack on ubuntu 14.04.4

The TestLink administrative user and password are the ones you set at installation time. MySQL admin user is called 'root', and its password is the same as the TestLink administrative user password....

2023-05-12 15:22:50 696 1

转载 Android HTTPS 抓包

网络请求抓包是研发过程中常见问题,无论是开发时的接口调试,还是测试时的数据检验,都有网络抓包的需求。随着HTTPS协议的推广以及手机系统安全性的升级,抓包的门槛可能会逐渐变高;在这篇文章里,我将带你从原理到实战全面认识HTTPS抓包,既理解HTTPS抓包背后的实现原理,又掌握市面上已有的抓包方案。对于一些方案中存在的坑点我也一一列举并给出解决方法。Fiddler目前主要是用在Window系统上的网络调试工具这里总结一下使用Charles进行抓包的主要步骤,其实就是按照第2节。...

2022-07-20 15:47:33 3693

原创 android 中设置时区为北京时间

SimpleDateFormat formatter = new SimpleDateFormat("yyyy-MM-dd-HH-mm-ss");TimeZone pst = TimeZone.getTimeZone("Etc/GMT-8");Date curDate = new Date(System.currentTimeMillis());formatter.setTimeZone(pst);String curTime = formatter.format(curDate).replace.

2021-06-02 14:57:21 1041

原创 用ListView显示ImageView和TextView

类CustomCountryListpackage com.clx.androidtest0526;import android.app.Activity;import android.view.LayoutInflater;import android.view.View;import android.view.ViewGroup;import android.widget.ArrayAdapter;import android.widget.ImageView;import and

2021-05-26 14:54:19 447

原创 Windows Server 2008 R2 Windows 找不到 inetmgr

Windows Server 2008 R2Windows 找不到 inetmgrIIS服务器我是已经安装了的报错:解决办法:服务器管理器-》角色-》Web服务器(IIS)-》添加角色服务选中 管理工具-》IIS管理控制台...

2021-02-07 11:15:16 775

原创 java servlet通过url下载文件

protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { // TODO Auto-generated method stub// response.getWriter().append("Served at: ").append(request.getContextPath()); response.setC..

2020-06-23 15:39:46 342

转载 java 计算自定义底数的对数

To calculate a logarithm with custom base in Java, we use the following identity: 1 2 3 4 5 6 7 8 9 @Test public void givenCustomLog_shouldReturnValidResults() { assertEquals(customLog(2, 256...

2020-06-16 18:16:52 1012

转载 php 生成AlphaID

<?php$code = AlphaID("816285");echo $code; function AlphaID($in, $to_num = false, $pad_up = false, $passKey = null) { $index = "abcdefghijklmnopqrstuvwxyz0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ"; if ($passKey !== null) { .

2020-06-16 16:22:06 1077

原创 打开.jmx文件时报错CannotResolveClassException kg.apc.jmeter.vizualizers.CorrectedResul

Problem loading XML from:'E:\jmeter\TestPlan-wisebuy.jmx'.Cause:CannotResolveClassException: kg.apc.jmeter.vizualizers.CorrectedResultCollectorDetail:com.thoughtworks.xstream.converters.ConversionException:---- Debugging information ----cau...

2020-06-15 16:53:13 2924

原创 打开.jmx文件时报错CannotResolveClassException com.tag.jmeter.ext.config.PropertyReader

Problem loading XML from:'E:\jmeter\BOB\BOB.jmx'.Cause:CannotResolveClassException: com.tag.jmeter.ext.config.PropertyReaderDetail:com.thoughtworks.xstream.converters.ConversionException:---- Debugging information ----cause-exception : com.tho.

2020-06-15 16:51:57 793

转载 java mysql 查询的tinyint值显示为true,false

java mysql 查询的tinyint值显示为true,false

2020-06-10 13:09:06 1031

原创 mysql 密码包含特殊字符时,java无法连接Access denied for user

mysql 密码包含特殊字符时,java无法连接Access denied for user 'username'@'localhost' (using password: YES)

2020-06-09 16:00:36 1598

原创 windows能用navicat连接数据库,但是不能用mysql命令或者java jdbc访问数据库;但是Linux环境却可以访问

服务器IP地址是外网IP在windows的命令行工具里输入下面,报错mysql -h 212.xx.xx.xx -P 3306 -u db_view dbpasswordERROR 1045 (28000): Access denied for user 'db_view'@'180.173.xx.xx' (using password: YES)

2020-06-05 09:37:52 877

转载 java web项目中如何存放和读取资源配置文件

It's your choice. There are basically three ways in a Java web application archive (WAR):1. Put it in classpathSo that you can load it byClassLoader#getResourceAsStream()with a classpath-relative path:ClassLoader classLoader = Thread.currentThread..

2020-06-03 13:37:58 415

原创 严重: 子容器启动失败java.util.concurrent.ExecutionException: org.apache.catalina.LifecycleException: 无法启动组件

eclipse eemvc spring严重: 子容器启动失败java.util.concurrent.ExecutionException: org.apache.catalina.LifecycleException: 无法启动组件[org.apache.catalina.webresources.StandardRoot@63f8276e] at java.base/java.util.concurrent.FutureTask.report(FutureTask.java:122)...

2020-06-02 18:37:54 4158 2

原创 eclipse 经常加载http://www.springframework.org/schema/beans/spring-beans-3.0.xsd 无法访问

<?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:context="http://www.springframework.org/schema/context" xmlns:tx="http:...

2020-05-31 14:22:05 3078

原创 eclipse官网的镜像不能访问了?

eclipse IDE下载不了了Unable to connect to the database server at this time(eclipse).Unable to connect to the database server at this time(eclipse).Unable to connect to the database server at this time(eclipse).

2020-05-15 14:02:08 876 5

转载 intellij idea 运行时报错the output path is not specified for module

intellij idea 运行时报错:the output path is not specified for module Specify the output path in the Project Structure dialog其实就是没有配置编译路径,ctrl+alrt+shift+s打开配置界面3.设置项目编译目录3.1添加目录我们在刚才创建的项目中添加几个目录...

2020-05-07 13:42:07 39229 2

转载 Windows 10 VirtualBox安装 macOS High Sierra

https://www.howtogeek.com/289594/how-to-install-macos-sierra-in-virtualbox-on-windows-10/Step Two: Create Your Virtual Machine in VirtualBoxNext, head to your Windows machine, andinstall VirtualB...

2020-03-09 10:49:47 2082

原创 java使用ssh的方式连接到mysql

using SSH tunnel in Java throughjsch, a Java an implementation of SSH2you have to have an SSH account on the remote host, and for the database example, a database account with a"connect"permi...

2019-12-13 18:20:15 935

原创 使用jsch以ssh的方式访问mysql ,如果提示PortForwardingL: local port 127.0.0.1:1119 cannot be bound.,则每次运行程序前先把原来的程

使用jsch以ssh的方式访问mysql ,如果提示PortForwardingL: local port 127.0.0.1:1119 cannot be bound.,则每次运行程序前先把原来的程序暂停JSchException**:PortForwardingL: local port 127.0.0.1:1119 cannot be bound.也可以在获取异常后} f...

2019-12-13 14:41:21 1927

原创 eclipse一打开就提示'Initializing Java Tooling 'has encountered a problem

'Initializing Java Tooling 'has encountered a problemAn internal error occurred during:"Initializing Java Tooling".An internal error occurred during: "Initializing Java Tooling".java.lang.NullPoi...

2019-12-02 17:37:35 422

原创 selenium java下载图片

selenium不能处理操作系统级别的对话框

2019-11-20 17:06:17 406

原创 postman request failed "404 not found"

查了半天才发现是api地址里有空格,以后在code里看下curl命令可以方便看到这些低级错误。

2019-06-17 11:13:09 6572 1

原创 stackoverflow上图片无法显示

是因为imgur.com这个域名我们访问不了唯一的办法就是fq

2019-06-14 17:09:23 2584 1

原创 android studio运行app(设备上已经安装和未安装的情况)

如果手机设备上已经安装过了app, 点击 工具栏中的Apply Changes 去更新app.或者点击Run去安装和运行app.

2019-06-14 14:51:07 1593

原创 小米手机解锁刷机后,安装apk出现Failure [INSTALL_FAILED_USER_RESTRICTED: Install canceled by user]

C:\Users\17030102>adb install E:\素材\apk\weixin.apkPerforming Streamed Installadb: failed to install E:\素材\apk\weixin.apk: Failure [INSTALL_FAILED_USER_RESTRICTED: Install canceled by user]设置--...

2019-06-14 11:07:14 6490 1

翻译 android studio layout的Design页面不能放大缩小,但是Text页面可以放大缩小

It happens from time to time in Android Studio 3. This are steps to try to resolve this issue:invalidate cache and restart studio; choose different emulator from drop-down menu; refresh layout by ...

2019-06-13 14:25:34 2528

原创 android studio Missing Constraints in ConstraintLayout

This view is not constrained. It only has designtime positions, so it will jump to (0,0) at runtime unless you add the constraints The layout editor allows you to place widgets anywhere on the canvas...

2019-06-12 13:28:38 15866 1

原创 Android .xml file error: resource color/green (aka com.wm.helloapp:color/green) not found.

Caused by: com.android.builder.internal.aapt.v2.Aapt2Exception: Android resource linking failedE:\git_code\helloapp\app\src\main\res\layout\activity_main.xml:2: error: resource color/green(aka com.w...

2019-06-11 14:01:46 5967

原创 读取的问题内容有中文,java file not found exception,

读取的问题内容有中文,java file not found exception,文件类型encoding 应该为utf-8无bom

2019-05-17 10:40:31 471

转载 Selenium实战:如何跳过绕不过的登录验证

背景先说一下背景,今天的这个主题是来源于我之前工作中的实战经历,当时在做一个爬虫项目,遇到了非常牛逼的反爬验证,就是之前提到过的某度指数数据,当时费了九牛二虎之力才用selenium+firefox登录成功,可是好景不长,没过多久就发现登录出现了图形验证码了,像下方这样的,出现这东西总不能手工去输入吧,兵来将挡水来土掩,一言不合就开干!马上就想到了图形的OCR识别技术,这个也不麻烦,有很多现成...

2019-05-13 17:45:52 3991 2

原创 selenium firefox console.error: BroadcastService: Message: Error: Polling for changes failed: Networ

console.error: BroadcastService: receivedBroadcastMessage: handler for remote-settings/monitor_changes threw error: Message: Error: Polling for changes failed: NetworkError when attempting to...

2019-03-01 09:41:49 1071

原创 Java 11, eclipse报错polling news feeds has encountered a problem javax/xml/bind/JAXBContext

java升级到11之后Eclipse IDE for Java DevelopersVersion: 2018-09 (4.9.0)Build id: 20180917-1800Windows 10eclipse报错polling news feeds has encountered a problemAn internal error occurred during: "P...

2019-02-14 11:25:51 1439

翻译 java pattern.matcher() vs pattern.matches()

pattern.matcher(String s) returns a Matcher that can find patterns in the String s. pattern.matches(String str) tests, if the entire String (str) matches the pattern.In brief (just to remember the...

2019-02-13 15:30:26 954

原创 selenium 获取直接的子节点

 Get all immediate children and nothing deeper &lt;html&gt; &lt;body&gt; &lt;div&gt; &lt;/div&gt; &lt;span&gt; &lt;table&gt; &lt;/table&gt; &lt;/span&gt;

2019-01-29 11:31:26 7484

红蜻蜓抓图精灵,保留截图历史记录

红蜻蜓抓图精灵2015,保留截图历史记录 可删除

2015-08-21

FastStone Capture截图工具

FastStone Capture截图工具 滚动截图 视频录制 绿色版

2015-08-21

BadboyInstaller-2.2.exe Jmeter组件

adboy是一款不错的Web自动化测试工具 Badboy提供了将Web测试脚本直接导出生成JMeter 脚本的功能

2015-07-20

firefox火狐原版,英文版,非中国版,最新,Firefox Setup Stub 39.0.exe

firefox火狐原版,英文版,非中国版,最新 从官网上下载的 Firefox Setup Stub 39.0.exe

2015-07-10

MySQL Java Connector » 5.1.35

MySQL Java Connector » 5.1.35

2015-04-06

MySQL Java Connector » 5.1.34

MySQL Java Connector » 5.1.34 jar包

2015-04-05

TestLink Client API jars

TestLink Client API jars 从https://code.google.com/p/dbfacade-testlink-rpc-api/downloads/detail?name=testlink-api-client-2.0.zip&can=2&q= 此处下载下来的

2015-03-21

testlink 1.9用户手册 英文版

testlink 1.9用户手册 英文版

2015-03-08

Maven: The Complete Reference权威指南

Maven: The Complete Reference The essential reference for anyone working with Apache Maven. Explore the details of the POM, Maven Settings, Maven Archetypes.

2015-01-11

DB2 10.1 Fundamentals certification exam 610 prep series

exam 610认证参考资料,此为转换为word形式文档,内容跟原PDF文档一样的 Exam 610, Part 1: Planning Exam 610, Part 2: Security Exam 610, Part 3: Working with databases and database objects Exam 610, Part 4: Working with DB2 Data using SQL Exam 610, Part 5: Working with tables, views, and indexes Exam 610, Part 6: Data concurrency

2014-11-16

DB2 10.1 fundamentals certification exam 610 prep PDF文档

Exam619认证参考资料, Exam 610, Part 1: Planning Exam 610, Part 2: Security Exam 610, Part 3: Working with databases and database objects Exam 610, Part 4: Working with DB2 Data using SQL Exam 610, Part 5: Working with tables, views, and indexes Exam 610, Part 6: Data concurrency

2014-11-16

db2ese_c.lic DB2 V9.7 license linux x86_64

破解前 emal:/opt/ibm/db2/V9.7/license # db2licm -l Product name: "DB2 Enterprise Server Edition" Expiry date: "Expired" Product identifier: "db2ese" Version information: "9.7" Enforcement policy: "Soft Stop" Product name: "DB2 Connect Server" Expiry date: "Expired" Product identifier: "db2consv" Version information: "9.7" Concurrent connect user policy: "Disabled" Enforcement policy: "Soft Stop" db2ese_c.lic拷贝到/opt/ibm/db2/V9.7/license下 emal:/opt/ibm/db2/V9.7/adm # db2licm -a ../license/db2ese_c.lic LIC1402I License added successfully. LIC1426I This product is now licensed for use as outlined in your License Agreement. USE OF THE PRODUCT CONSTITUTES ACCEPTANCE OF THE TERMS OF THE IBM LICENSE AGREEMENT, LOCATED IN THE FOLLOWING DIRECTORY: "/opt/ibm/db2/V9.7/license/en_US.iso88591" 再用db2licm -l查看 貌似只破解了一部分,但是可以连数据库了 db2icomm@emal:~/Desktop> db2licm -l Product name: "DB2 Enterprise Server Edition" License type: "CPU Option" Expiry date: "Permanent" Product identifier: "db2ese" Version information: "9.7" Enforcement policy: "Soft Stop" Features: DB2 Performance Optimization ESE: "Not licensed" DB2 Storage Optimization: "Not licensed" DB2 Advanced Access Control: "Not licensed" IBM Homogeneous Replication ESE: "Not licensed" Product name: "DB2 Connect Server" Expiry date: "Expired" Product identifier: "db2consv" Version information: "9.7" Concurrent connect user policy: "Disabled" Enforcement policy: "Soft Stop"

2014-11-02

第 7 章 Java Servlet

教学目的与要求:通过本章的学习让学生了解如何用 servlet 读写文件,用 servlet 访问数据库;理解servlet 工作原理,servlet共享变量的使用;掌握编译和安装 servlet,通过 JSP 页面调用 servlet,HttpServlet 类,掌握会话管理。

2014-09-08

第5 章 Servlet 技术基础知识

Servlet 是一种服务器端的编程语言,是J2EE 中比较关键的组成部分,Servlet 技术的推出,扩展了 Java 语言在服务器端开发的功能,巩固了Java 语言在服务器端开发中的地位,而且现在使用非常广泛的 JSP 技术也是基于Servlet 的原理,JSP+JavaBeans+Servlet 成为实现MVC 模式的一种有效的选择。在本 章中将介绍Servlet 的基础知识,并通过具体的示例介绍Servlet 的强大功能。

2014-09-08

Font 'Trebuchet MS' 'Regular'

Toad for DB2 安装后 Font 'Trebuchet MS' does not support style 'Regular'. 是缺少Trebuchet MS字体下的Regular字体类型 只要安装此包中的Trebuchet MS.ttf就可以了 http://blog.csdn.net/fabbychips/article/details/38736171

2014-08-21

IBM DB2 9.7 for Linux, UNIX, and Windows 资料

有下面几个文档 What's New for DB2 Version 9.7 PDF July, 2012 Quick Start Guide - DB2 Personal Edition1 PDF Quick Start Guide - DB2 Servers1 PDF Quick Start Guide - DB2 Connect1 PDF Quick Start Guide - IBM Database Enterprise Developer Edition1 PDF Quick Start Guide - DB2 Connect Unlimited Edition for System z1 PDF September, 2010 Quick Start Guide - DB2 Feature Licensing1 PDF Getting Started with DB2 Installation and & Administration on Linux and Windows PDF Upgrading to DB2 Version 9.7 PDF July, 2012 Installing IBM Data Server Clients PDF September, 2010 Installing DB2 Servers

2014-07-13

Repository Management with Nexus book 英文版

nexus参考文档英文 Covering both the Open Source version and Nexus Professional, Repository Management with Nexus shows you how to organize artifacts, enable collaboration and increase efficiency with the industry’s leading repository manager.

2014-06-25

Run Condition Plugin 1.0

Run Condition Plugin 1.0 hpi

2014-06-05

Parameterized Trigger Plugin 2.25

Parameterized Trigger Plugin 2.25 hpi

2014-06-05

Conditional BuildStep Plugin 1.3.3

Conditional BuildStep Plugin 1.3.3 HPI

2014-06-04

T1载波与E1载波.txt

网络工程师考试之TI与EI载波技术分析与比较 各自的特点 传输带宽 帧结构比较 一、T1载波(T1 Carrier ) T1载波是专用电话连接、时分多路数字传输设施。T1 线路实际上是由24个单独的通道组成的,每个通道支持 64K 比特/秒的传输速度,其中数据速率为56Kb/s。 二、E1载波(E1 Carrier) E1载波是一种2.048Mbps速率的PCM载波。采用同步时分复用技术将30个话音信道(64K)和2个控制信道(16K)复合在一条2.048Mb/s的高速信道上。所谓的同步时分复用是:每个子通道按照时间片轮流占用带宽,但每个传输时间划分固定大小的周期,即使子通道不使用也不能够给其他子通道使用。

2020-03-09

机器之心 pdf

 微软创始人比尔·盖茨曾经称雷·库兹韦尔是“我知道在预测人工智能上超厉害的人”。过去30年他对未来预测的准确率超过了86%。在这本《机器之心》中,雷·库兹韦尔阐述了极其令人信服的大胆预测:   未来的世界,人类和机器将难分彼此,人类将不再是万物之灵。电脑将比人脑有高一万倍的智能。量子计算将引爆技术未来。机器不仅拥有智能,而且拥有心灵,将具有人类的意识、情绪和欲望。人类身体中植入了用生物工程和纳米材料制成的电脑芯片、人造器官,将比现代人类更长寿(甚至长生不老),有更强的学习能力,更灵敏的视觉和听觉。虚拟现实有可能使人机发生“恋爱”……你会认为这不可能?当人类不再继续生活在树上,并且吃烤熟了的东西的时候,有某个猴子也是和你一样看待人类进化的。 雷·库兹韦尔,集预言大师、科技大师、人类社会发展大师、“爱迪生的正统接班人”于一体的大师中的大师。他是全球公认超级的发明家、思想家和未来学家。《华尔街日报》称他为“永不满足的天才”,美国公共电视台称他为“开创美国的16位改革家”之一。他还是美国国家科技奖章得主,入选美国发明家名人堂,拥有19个荣誉博士学位,并三度获颁总统荣誉奖。   2012年12月17日,雷·库兹韦尔受Google创始人拉里·佩奇之邀加入Google,担任Google的工程总监。Google的绝密实验室Google X在运作很多项目如Google眼镜、自动化住宅、智能手表、无人驾驶汽车、Wi-Fi气球等,无不留下了库兹韦尔的印痕。

2018-12-25

奇点临近(高清完整版).pdf (美)Ray Kurzweil 著雷·库兹韦尔

《奇点临近(The Singularity is Near:When Humans Transcend Biology)》是2011年机械工业出版社出版的图书,作者是雷·库兹韦尔。该书讲述了智能问题的数据结构及实现的算法,人工智能的应用。 人工智能作为21世纪科技发展的最新成就,深刻揭示了科技发展为人类社会带来的巨大影响。本书结合求解智能问题的数据结构以及实现的算法,把人工智能的应用程序应用于实际环境中,并从社会和哲学、心理学以及神经生理学角度对人工智能进行了独特的讨论。本书提供了一个崭新的视角,展示了以人工智能为代表的科技现象作为一种“奇点”思潮,揭示了其在世界范围内所产生的广泛影响。本书全书分为以下几大部分:第一部分人工智能,第二部分问题延伸,第三部分拓展人类思维,第四部分推理,第五部分通信、感知与行动,第六部分结论。本书既详细介绍了人工智能的基本概念、思想和算法,还描述了其各个研究方向最前沿的进展,同时收集整理了详实的历史文献与事件。, 适合于不同层次和领域的研究人员及学生,是高等院校本科生和研究生人工智能课的课外读物,也是相关领域的科研与工程技术人员的参考书。

2018-12-25

testng,6.11 jar包

testng 6.11 jar包下载

2017-06-30

fiddler4抓包工具

Fiddler是位于客户端和服务器端的HTTP代理,也是目前最常用的http抓包工具之一 。 它能够记录客户端和服务器之间的所有 HTTP请求,可以针对特定的HTTP请求,分析请求数据、设置断点、调试web应用、修改请求的数据,甚至可以修改服务器返回的数据,功能非常强大,是web调试的利器。 既然是代理,也就是说:客户端的所有请求都要先经过Fiddler,然后转发到相应的服务器,反之,服务器端的所有响应,也都会先经过Fiddler然后发送到客户端,基于这个原因,Fiddler支持所有可以设置http代理为127.0.0.1:8888的浏览器和应用程序。

2016-12-16

GeckoDriver64

GeckoDriver64 Java.lang.IllegalStateException: The path to the driver executable must be set by the webdriver.gecko.driver system property; for more information, seehttps://github.com/mozilla/geckodriver.

2016-12-11

EX-Converter.rar excel批量导入testlink工具

excel批量导入testlink工具 EX-Converter.rar里面有两个范例导测试用例和测试集 测试集支持两级, 字段: 测试集,用例名,重要性,摘要,前提,步骤动作,期望的结果

2016-11-16

bitnami-testlink-1.9.15-1-windows-installer.exe

bitnami-testlink-1.9.15-1-windows-installer.exe testlink windows安装版

2016-11-10

slf4j-api-1.7.21.jar

Caused by: java.lang.ClassNotFoundException: org.slf4j.LoggerFactory 缺少此依赖包

2016-11-09

jgit jar包

org.eclipse.jgit-4.5.0.201609210915-r.jar 通过java执行git命令

2016-11-08

tableenhancer-3.1.3.jar

Table Enhancer for Confluence confluence page表格的行和列固定工具 https://marketplace.atlassian.com/plugins/com.tngtech.confluence.plugins.tableenhancer/server/overview

2016-11-01

jsch-0.1.54.jar

JSch is a pure Java implementation of SSH2. JSch allows you to connect to an sshd server and use port forwarding, X11 forwarding, file transfer, etc., and you can integrate its functionality into your own Java programs. JSch is licensed under BSD style license.

2016-10-28

IEDriverServer_x64_2.53.1.zip

IEDriverServer_x64_2.53.1.zip selenium相关软件

2016-07-24

selenium_ide-2.9.1-fx.xpi

selenium_ide-2.9.1-fx.xpi selenium用于web应用程序自动化测试 此插件适合firefox

2016-02-18

selenium-java-2.52.0.zip

selenium-java-2.52.0.zip selenium java运行环境

2016-02-17

selenium-server-standalone-2.48.2.jar

selenium-server-standalone-2.48.2.jar 自动化测试

2016-02-17

selenium-java-2.48.2.zip

里面有selenium-java-2.48.2.jar和其相关的jar包

2016-02-17

免费的flash转成mp4格式工具

免费的flash转成mp4格式工具 非常简单好用。

2015-11-21

易当拾色器v1.2.exe

易当拾色器v1.2.exe 取色器,拾色器 直接把取色器图标拖到要取色的颜色上就可以拿到RGB和HTML码

2015-10-29

屏幕颜色取色器,拾色器

屏幕颜色取色器,拾色器。绿色版的。直接点

2015-10-28

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除