码迷,mamicode.com
首页 >  
搜索关键字:driver    ( 5694个结果
mybatis学习(三、配置解析)
三、配置解析 MyBatis 的配置文件包含了会深深影响 MyBatis 行为的设置和属性信息。 配置文档的顶层结构如下: configuration(配置) properties(属性) settings(设置) typeAliases(类型别名) typeHandlers(类型处理器) obje ...
分类:其他好文   时间:2021-03-02 12:38:22    阅读次数:0
selenium自动登录登录新浪微博(一)
接上个文章,因为失败,思考了一下原因,参考了其他的博主。 使用cookie可以免密码登入网站。 所以自动化登录微博首先需要获取已经登录微博后浏览器的cookie。 接下来上代码: # 导入需要的数据包 from selenium import webdriver import time # 将获取的 ...
分类:其他好文   时间:2021-03-02 11:42:50    阅读次数:0
微服务issue记录
1. Cannot determine embedded database driver class for database type NONE @SpringBootApplication(exclude = {DataSourceAutoConfiguration.class}) 2. \ta ...
分类:其他好文   时间:2021-03-01 13:58:00    阅读次数:0
webdriver常用元素操作API
1、clear(): 清除对象的内容 driver.find_element_by_id('kw').clear() 2、send_keys(): 在对象上模拟按键输入driver.find_element(By.ID,'kw').send_keys("12306") 3、click(): 单击对象 ...
分类:Windows程序   时间:2021-03-01 12:50:47    阅读次数:0
jeecgboot积木报表(jimuReport)SQL Server切换
准备数据库 还原SQL Server数据库备份,或使用MySQL的SQL代码创建库后,使用DBeaver或navicat等工具转换为SQL Server库 修改数据库链接字符串 driver-class-name: com.microsoft.sqlserver.jdbc.SQLServerDriv ...
分类:数据库   时间:2021-02-26 13:15:41    阅读次数:0
怎么在docker中使用nvidia显卡
参考资料: https://blog.csdn.net/qq_33547243/article/details/107433616 https://www.cnblogs.com/shoufu/p/12904832.html https://github.com/NVIDIA/nvidia-dock ...
分类:其他好文   时间:2021-02-25 12:13:14    阅读次数:0
Java中JDBC增加数据
1、加载驱动 1 Class.forNmae("com.mysql.jdbc.Driver"); 2 3 /* 4 Class.forName(xxx.xx.xx) 返回的是一个类 5 Class.forName(xxx.xx.xx);的作用是要求JVM查找并加载指定的类,也就是说JVM会执行该类的 ...
分类:数据库   时间:2021-02-24 13:11:29    阅读次数:0
jdbc连接MySql数据库
jdbc连接MySql数据库 package com.zhy; import com.mysql.jdbc.Driver; import java.sql.*; /** * @author ZHY * @data 2021/2/15 */ public class TestJdbc { public ...
分类:数据库   时间:2021-02-18 12:57:47    阅读次数:0
nvidia-smi Failed to initialize NVML: Driver/library version mismatch
nvidia-smiFailed to initialize NVML: Driver/library version mismatch 原因:NVIDIA 内核驱动版本与系统驱动不一致, # sudo rmmod nvidiarmmod: ERROR: Module nvidia is in us ...
分类:其他好文   时间:2021-02-17 14:55:41    阅读次数:0
「Selenium」- Can not connect to the Service /path/to/chromedriver @20210211
问题描述 # python3.7 /tmp/demo.py Traceback (most recent call last): File "/tmp/demo.py", line 4, in <module> driver = webdriver.Chrome('/srv/sharing/pack ...
分类:其他好文   时间:2021-02-15 12:38:15    阅读次数:0
5694条   上一页 1 ... 6 7 8 9 10 ... 570 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!