上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 16 下一页
摘要: 注册页需要勾选隐私,定位勾选框 第一种:使用ActionChains elem = driver.find_element_by_id('agree') actions = ActionChains(driver) actions.move_to_element(elem).click().perf 阅读全文
posted @ 2020-09-05 19:03 橙子Cjw 阅读(210) 评论(0) 推荐(0) 编辑
摘要: D:\TestSoftware\mysql5731>cd bin D:\TestSoftware\mysql5731\bin>mysql -uroot -p Enter password: **** Welcome to the MySQL monitor. Commands end with ; 阅读全文
posted @ 2020-09-02 15:58 橙子Cjw 阅读(397) 评论(0) 推荐(0) 编辑
摘要: -- 实际数据库、用户名,密码,主机账号,端口号均正确 提示如下: 异常如下: 2020-08-29 17:27:28.959 ERROR com.zaxxer.hikari.pool.HikariPool - HikariPool-7 - Exception during pool initial 阅读全文
posted @ 2020-08-29 22:33 橙子Cjw 阅读(407) 评论(0) 推荐(0) 编辑
摘要: 1、进入mysql ,密码输入当前密码 mysql -u root -p select User from user; #此处为查询用户命令 2、修改账户密码加密规则并更新用户密码 ALTER USER 'root'@'localhost' IDENTIFIED WITH mysql_native_ 阅读全文
posted @ 2020-08-29 15:02 橙子Cjw 阅读(73) 评论(0) 推荐(0) 编辑
摘要: 一、操作定位元素 selenium提供了定位元素的API,这些方法都被定义在webDriver类中,需要以find开头, 例如:find_Element_by_id('') ​ 二、 Selenium WebDriver属性 ​ 三、 Selenium WebDriver方法 ​ 四、 WebEle 阅读全文
posted @ 2020-08-28 17:22 橙子Cjw 阅读(655) 评论(3) 推荐(1) 编辑
摘要: from selenium import webdriver from time import sleep class TestCase(object): def __init__(self): self.driver = webdriver.Chrome() self.driver.get('ht 阅读全文
posted @ 2020-08-28 15:23 橙子Cjw 阅读(212) 评论(0) 推荐(0) 编辑
摘要: # selenium中对截屏的操作 from selenium import webdriver from time import sleep, strftime, localtime, time import os class TestCase(object): # 初始化 def __init_ 阅读全文
posted @ 2020-08-28 11:14 橙子Cjw 阅读(294) 评论(0) 推荐(0) 编辑
摘要: 一、操作定位元素 selenium提供了定位元素的API,这些方法都被定义在webDriver类中,需要以find开头, 例如:find_Element_by_id('') 二、 Selenium WebDriver属性 三、 Selenium WebDriver方法 四、 WebElement常用 阅读全文
posted @ 2020-08-28 09:20 橙子Cjw 阅读(164) 评论(0) 推荐(0) 编辑
摘要: from selenium import webdriver from time import sleep ''' selenium中关于js一些常用操作 ''' class TestCase(object): def __init__(self): self.driver = webdriver. 阅读全文
posted @ 2020-08-27 09:04 橙子Cjw 阅读(175) 评论(0) 推荐(0) 编辑
摘要: from selenium import webdriver from selenium.webdriver import ActionChains from time import sleep from selenium.webdriver.common.keys import Keys clas 阅读全文
posted @ 2020-08-27 08:27 橙子Cjw 阅读(269) 评论(0) 推荐(0) 编辑
上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 16 下一页