上一页 1 ··· 6 7 8 9 10 11 12 13 14 ··· 65 下一页
摘要: 1.static 修饰的成员变量或成员方法 被所有的对象共享 效果图1 没有使用static 时 实例化对象stu1 时需要写3个属性 姓名 年龄 毕业院校 实例化对象stu2 时需要写3个属性 姓名 年龄 毕业院校 效果图2 使用了static 修饰毕业院校时 实例化对象stu1 时需要写3个属性 阅读全文
posted @ 2023-10-12 14:36 胖豆芽 阅读(15) 评论(0) 推荐(0) 编辑
摘要: 直接用count方法 str1=input("请输入一个范围为0-9,a-z,A-z的字符串") str2=input("请再输入一个范围为0-9,a-z,A-z的字符串") count=str1.count(str2) print(f'包含的次数:{count}') 自己写的 #str1='abc 阅读全文
posted @ 2023-10-12 11:17 胖豆芽 阅读(20) 评论(0) 推荐(0) 编辑
摘要: pass 阅读全文
posted @ 2023-10-11 17:36 胖豆芽 阅读(1) 评论(0) 推荐(0) 编辑
摘要: html 效果 当点击弹窗上的确认按钮后 <!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>弹窗示例</title> <style> body{ text-align: center; padding-top: 50px; } < 阅读全文
posted @ 2023-10-11 12:46 胖豆芽 阅读(392) 评论(0) 推荐(0) 编辑
摘要: from selenium import webdriver from selenium.webdriver.common.by import By from selenium.webdriver.common.keys import Keys from time import sleep,ctim 阅读全文
posted @ 2023-10-10 18:09 胖豆芽 阅读(6) 评论(0) 推荐(0) 编辑
摘要: 背景知识 发送回车键 from selenium.webdriver.common.keys import Keys driver.find_element(By.CSS_SELECTOR, loc).send_keys(Keys.ENTER) 隐式等待的意思是 当符合条件就结束等待,不符合持续等待 阅读全文
posted @ 2023-10-10 17:54 胖豆芽 阅读(5) 评论(0) 推荐(0) 编辑
摘要: 第一种 多个元素被隐藏时 通过js修改 对比照片 这个是没隐藏的 对比照片 这个是隐藏的 driver = webdriver.Chrome() # url url=r"http://127.0.0.1:5000/" driver.get(url) print("已打开网页") # 执行js脚本,将 阅读全文
posted @ 2023-10-10 16:34 胖豆芽 阅读(131) 评论(0) 推荐(0) 编辑
摘要: 以下是两种常用的隐藏元素的方法:第一种: 使用内联样式:在 input 元素上添加 style="display: none;" 属性。 html <form action="/upload" method="post" enctype="multipart/form-data"> <input t 阅读全文
posted @ 2023-10-10 15:06 胖豆芽 阅读(747) 评论(0) 推荐(0) 编辑
摘要: 最终效果 背景知识 将HTML文件放在"templates"文件夹中可以确保Flask能够自动找到和加载它们,我没建这个文件夹所以报错了,图中是查了资料改正后的 工程结构 python文件需要放到工程的子目录 html代码 <!DOCTYPE html> <html lang="en"> <head 阅读全文
posted @ 2023-10-09 15:19 胖豆芽 阅读(17) 评论(0) 推荐(0) 编辑
摘要: 第一种 作为对照 不隐藏 选择照片和提交照片按钮 效果 执行python代码后的效果 python代码 # 点击上传按钮 # 导包 from selenium import webdriver from selenium.webdriver.common.by import By from time 阅读全文
posted @ 2023-10-09 10:06 胖豆芽 阅读(30) 评论(0) 推荐(0) 编辑
上一页 1 ··· 6 7 8 9 10 11 12 13 14 ··· 65 下一页