selenium

现场打脸:如何使用Selenium批量上传文件?
Automa官网
低代码开发,推荐一款Web 端自动化神器:Automa
网页自动化操作工具Automa学习使用记录01
网页自动化操作工具Automa学习使用记录02 - 变量用法

selenium

完整的线程和进程创建使用对比代码

python 复制代码
import multiprocessing as mp
import threading as td
 
def job(a,d):
    print('aaaaa')
 
t1 = td.Thread(target=job,args=(1,2))
p1 = mp.Process(target=job,args=(1,2))
t1.start()
p1.start()
t1.join()
p1.join()

Tkinter-Message 消息框

https://www.python100.com/html/68665.html

相关推荐
2601_962295331 天前
如何python实现网页的自动化
python·selenium·beautifulsoup·requests·网页自动化
程序员小远2 天前
自动化测试用例编写实例详解
自动化测试·软件测试·python·selenium·测试工具·职场和发展·测试用例
2601_962298272 天前
Python与Selenium结合的Web自动化测试全流程实践教程
自动化测试·python·selenium·web测试·pageobjectmodel
2601_962298273 天前
【自动化测试】基于Selenium + Python的web自动化框架
自动化测试·python·selenium·测试用例·web框架
2601_962295583 天前
python+selenium实现自动化测试
自动化测试·python·selenium·学习心得·web端测试
B2_Proxy5 天前
Selenium配置代理IP的完整指南:从启动参数到认证扩展
selenium·测试工具
weixin_440730505 天前
Playwright介绍、特点、小例子还有与传统selenium的区别
selenium·测试工具·playwright
2601_962387827 天前
web自动化测试实战教程【selenium/unittest/pytest】【共193课
selenium·pytest·devops·web自动化测试·unittest
2601_962297257 天前
Python、Pytest、Allure、Selenium和Jenkins实现自动化测试集成实例
python·selenium·jenkins·pytest·allure