In case if you face this problem, one of the possible solutions that will work for you is to make sure that your pom.xml file is up to date and you use right version of webdriver and selenium java bindings. Here's what helped me

<dependency>
<groupId>org.seleniumhq.selenium</groupId>
<artifactId>selenium-java</artifactId>
<version>2.35.0</version>
</dependency>
<dependency>
<groupId>org.seleniumhq.selenium</groupId>
<artifactId>selenium-server</artifactId>
<version>2.35.0</version>
</dependency>
<dependency>
<groupId>org.seleniumhq.selenium</groupId>
<artifactId>selenium-common</artifactId>
<version>2.0b1</version>
</dependency>
<dependency>
<groupId>org.seleniumhq.selenium</groupId>
<artifactId>selenium-api</artifactId>
<version>2.35.0</version>
</dependency>

最新文章

  1. sqlserver数据库 Schema
  2. php 图片base64编码生成dataurl和保存为图片
  3. 改变Yii2的默认路由
  4. python日志浅析
  5. laravel5.2 学习之服务提供者
  6. IOPS=(Queue Depth)/(IO latency)
  7. (转载)KL距离,Kullback-Leibler Divergence
  8. Spring mvc 中有关 Shiro 1.2.3 配置问题
  9. STM32的FSMC总线复用调试笔记
  10. Node.js博客搭建
  11. 解决ssh连接linux服务器速度慢
  12. Oracle根据时间恢复已删除提交的数据
  13. NO.5 &#160; 算法测试(词条统计)
  14. Java设计模式之十一 ---- 策略模式和模板方法模式
  15. android 开发 对话框Dialog详解
  16. Excel破解密码代码
  17. Unity3D Mecanim :Body Mask的使用、 角色Retargeting原理分析、Apply RootMotion
  18. C#操作Xml树的扩展类
  19. linux 下 WebSphere日志中文乱码
  20. 《Beginning Java 7》 - 6 - 深入理解 String

热门文章

  1. [na]wireshark排查打印机问题
  2. C++标准库及其保留字(关键字)——附:C++标准文档
  3. Fluent UDF【3】:环境配置
  4. cocos2d-x---CCLabelTTF加载字体库
  5. [AWS vs Azure] 云计算里AWS和Azure的探究(5) ——EC2和Azure VM磁盘性能分析
  6. SSH登录详解
  7. HBase的Write Ahead Log (WAL) —— 整体架构、线程模型【转】
  8. GCC Reference
  9. Lintcode: Subarray Sum 解题报告
  10. Django实现自定义template页面并在admin site的app模块中加入自定义跳转链接