码迷,mamicode.com
首页 >  
搜索关键字:wlan driver    ( 6189个结果
Selenium3自动化测试【5】浏览器driver的安装(FireFox)
Selenium3自动化测试下浏览器driver的安装(FireFox)
分类:其他好文   时间:2020-10-27 11:20:38    阅读次数:19
springboot多数据源配置
数据源配置: spring.datasource.driver-class-name=com.mysql.cj.jdbc.Driverspring.datasource.one.url=jdbc:mysql://127.0.0.1:3306/111?useUnicode=true&character ...
分类:编程语言   时间:2020-10-19 22:37:22    阅读次数:27
jdbc(二)
参考:https://www.runoob.com/w3cnote/jdbc-use-guide.html DbUtil 即jdbc工具类,用于提供Connection对象 public class DbUtil { public static final String URL = "jdbc:my ...
分类:数据库   时间:2020-10-12 20:03:33    阅读次数:36
python+selenium :环境配置
1、下载python 3.0版本以上 直接搜索python https://www.python.org/getit/ 2、安装 pycharm 方便编写代码,python自带idle的编辑器,建议使用pycharm 比较方便。 3、安装谷歌浏览器 4、下载对应的谷歌版本的selenium 5、将c ...
分类:编程语言   时间:2020-10-07 20:37:13    阅读次数:31
driver.switch_to.frame()
切换到frame的三种方式: 1、id 2、name 3、标签名 # coding:utf-8 from selenium import webdriver # 实例化 driver = webdriver.Chrome() # 发起请求 driver.get("http://mail.163.co ...
分类:其他好文   时间:2020-09-21 11:55:13    阅读次数:42
appium怎么按下系统按键?如按下返回键、home键等等
ava_client3.0版本以后使用pressKeyCode方法,之前的版本使用sendKeyEvent方法 1. 返回:driver.pressKeyCode(AndroidKeyCode.BACK) 2. HOME键:driver.pressKeyCode(AndroidKeyCode.Hom ...
分类:移动开发   时间:2020-09-18 04:10:43    阅读次数:54
java spi机制详解
1.什么是spi? SPI 全称为 (Service Provider Interface) ,是JDK内置的一种服务提供发现机制。SPI是一种动态替换发现的机制, 比如有个接口,想运行时动态的给它添加实现,你只需要添加一个实现。我们经常遇到的就是java.sql.Driver接口,其他不同厂商可以 ...
分类:编程语言   时间:2020-09-18 04:07:18    阅读次数:40
SpringBoot整合MyBatis实现增删改查案例完整版
1.Spring Boot Spring Boot是一个简化Spring开发的框架。用来监护spring应用开发,约定大于配置,去繁就简,just run 就能创建一个独立的,产品级的应用。 我们在使用Spring Boot时只需要配置相应的Spring Boot就可以用所有的Spring组件,简单 ...
分类:编程语言   时间:2020-09-18 01:11:38    阅读次数:49
python 页面基类 Page封装 →driver层的封装(最底层的封装Page)
# coding=utf-8 import time from selenium.common.exceptions import NoSuchElementException from selenium.webdriver import ActionChains from selenium.web ...
分类:编程语言   时间:2020-09-17 22:22:43    阅读次数:27
Python+Selenium自动化测试之163框架切换
import time from selenium import webdriver driver = webdriver.Chrome() driver.get("https://email.163.com") time.sleep(2) iframe = driver.find_elements ...
分类:编程语言   时间:2020-09-17 18:46:29    阅读次数:27
6189条   上一页 1 ... 14 15 16 17 18 ... 619 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!