📅  最后修改于: 2023-12-03 15:34:32.303000             🧑  作者: Mango
Python自动化是指通过编写Python脚本来自动化执行计算机任务、处理数据等操作。Python自动化可以应用于各种领域,如软件测试、网络爬虫、数据分析等。
代码片段如下:
import pyautogui
import time
# 等待3秒
time.sleep(3)
# 获取当前屏幕分辨率
width, height = pyautogui.size()
# 鼠标移动到屏幕中央
pyautogui.moveTo(width / 2, height / 2, duration=1)
以下是一个简单的Python自动化实例,使用selenium库模拟Chrome浏览器登录到Google搜索页面,然后搜索关键词“Python自动化”。
# 导入selenium库
from selenium import webdriver
import time
# 创建浏览器对象
driver = webdriver.Chrome()
# 打开Google搜索页面
driver.get("https://www.google.com/")
# 输入查询关键词
search_box = driver.find_element_by_name("q")
search_box.send_keys("Python自动化")
search_box.submit()
# 睡眠3秒,等待页面加载
time.sleep(3)
# 关闭浏览器
driver.quit()
Python自动化是利用Python编写程序自动完成计算机任务和数据处理的过程,具有简洁、易读、可扩展和跨平台等特点。借助Python自动化库和实例,可以实现各种自动化操作,提高效率,减少人为错误。