Wesley13 Wesley13
2年前
java+selenium+maven+IntelliJ IDEA 搭建简单的UI自动化测试环境
1\.用IntelliJIDEA新建一个maven工程2\.在pom.xml中添加依赖:<dependency<groupIdorg.seleniumhq.selenium</groupId<artifactIdseleniumjava</artifactId
Stella981 Stella981
2年前
Docker Selenium
SeleniumHQ官方项目:https://github.com/seleniumHQ/dockerselenium(https://www.oschina.net/action/GoToLink?urlhttps%3A%2F%2Fgithub.com%2FseleniumHQ%2Fdockerselenium)项目目前快速迭代中。<br
Stella981 Stella981
2年前
Selenium 简单入门
原文链接: Selenium简单入门(https://my.oschina.net/ahaoboy/blog/1835350)安装pipinstallselenium版本查找https://sites.google.com/a/chromium.org/chromedriver/downloads(https://www
Stella981 Stella981
2年前
Selenium+python
跟着悠悠学coding:utf8fromseleniumimportwebdriverdriverwebdriver.Firefox()driver.get("https://www.baidu.com")<inputid"kw"class"s_ipt"type"text"autocomplete"off"ma
Easter79 Easter79
2年前
TestNG+Selenium
是一个开源自动化测试框架。其实类似于JUnit这种单元测试框架,但进行了一些功能扩展属于selenium?还是说TestNG是一个测试框架,它用到了selenium的web自动化测试的功能,比如使用浏览器对应的driver去进行操作,不一定要由RobotFramework触发参考TestNG环境设置(
Stella981 Stella981
2年前
Selenium Grid使用
什么是SeleniumGridSeleniumGrid是Selenium套件的一部分,它专门用于并行运行多个测试用例在不同的浏览器、操作系统和机器上。SeleniumGrid有两个版本——老版本Grid1和新版本Grid2。我们只对新版本做介绍,因为Selenium团队已经逐渐遗弃老版本了。Seleniu
Stella981 Stella981
2年前
Selenium3源码之初识篇
点击上方蓝字“开源优测”一起玩耍!(https://oscimg.oschina.net/oscnet/6bd8fbaffbc748ff92911e10bb4253fd.jpg)Selenium3Python3源码分析系列以短文方式进行分享阅读源码是掌握Selenium的最好方式我的公众号:开
Wesley13 Wesley13
2年前
Java&Selenium自动化测试调用JS实现单击
Java&Selenium自动化测试调用JS实现单击/themethodofinvokingjstodosomething@authordavieyang@create201808051:37
Stella981 Stella981
2年前
Selenium+java
一、什么是单选框、复选框?!(https://oscimg.oschina.net/oscnet/783e3a41723672983f90ae7ce704eebe2a4.png)二、被测页面html源代码CheckBoxRadioDemo.html<!DOCTYPEhtml<htmllang
崇恩圣帝 崇恩圣帝
1星期前
极验滑动验证码识别系统实现
在网络世界中,极验滑动验证码是常见的人机验证形式之一,通过拖动滑块拼合图像来完成验证。本文将介绍如何使用Python和Selenium库来实现极验滑动验证码的自动识别和验证过程。准备工作在开始之前,请确保已经安装好了Selenium库和Chrome浏览器,