51dev.com IT技术开发者社区

51dev.com 技术开发者社区

python 获取进程数据

python 获取进程数据

 frommultiprocessingimportProcess,Managerdeffunc(dt,lt):foriinrange(10):key='arg'+str(i)dt[key]=i*ilt+=range(11,16)if__name__=="__main__":manager...

selenium 在电脑浏览器中用手机模式打开

selenium 在电脑浏览器中用手机模式打开

  importrequestsfromseleniumimportwebdriverfromselenium.webdriver.common.action_chainsimportActionChainsfromseleniumimportwebdriverfromselen...

header 格式

header 格式

 headers={'Accept':'text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8','Accept-Encoding':'gzip,deflate','Acce...

pymouse 点击指定坐标点

pymouse 点击指定坐标点

 frompymouseimportPyMousemouse=PyMouse()mouse.click(220,330) ...

selenium 指定滚动到某个元素

selenium 指定滚动到某个元素

 fromseleniumimportwebdriverfromselenium.common.exceptionsimportNoSuchElementExceptionfromselenium.webdriver.common.byimportByfromselenium.webdri...

js代码点击触发事件

js代码点击触发事件

 functionload(){//下面两种方法效果是一样的document.getElementById("target").onclick();document.getElementById("target").click();}备注:1.btnObj.click()是真正地用程序去点...

python3 使用pyperclip读写剪贴板(windows)

python3 使用pyperclip读写剪贴板(windows)

 importpyperclipdd=pyperclip.paste()print(dd)pyperclip.copy("docs.python.org")print(pyperclip.paste())pyperclip.copy("hello")print(pyperclip.past...

Python使用win32com实现的模拟浏览器功能

Python使用win32com实现的模拟浏览器功能

 #-*-coding:UTF-8-*-#!/user/bin/envpython'''Createdon2010-9-1@author:chenzehe'''importwin32com.clientfromtimeimportsleeploginurl='http://passport...

鼠标经过事件(onmouseover)

鼠标经过事件(onmouseover)

 <!DOCTYPEHTML><html><head><metahttp-equiv="Content-Type"content="text/html;charset=utf-8"/><title>鼠标经过事件</title...

python 操作剪切板

python 操作剪切板

 python3在使用网上找到的一些使用剪切板的片段时发现存在写入剪切板后乱码的情况,研究后发现python3不能使用SetClipboardData方法,要使用SetClipboardTextimportsysimportos.pathimportwin32clipboardaswimp...

Python:ModuleNotFoundError: No module named 'windows'

Python:ModuleNotFoundError: No module named 'windows'

 pymouse安装后,又出现了ModuleNotFoundError:Nomodulenamed'windows'的错误 解决:下载安装pyhook:http://www.lfd.uci.edu/~gohlke/pythonlibs/ctrl+f查找 安装pipins...

python 比较两个yaml文件

python 比较两个yaml文件

 importyamlwithopen("a.yaml")asf:withopen("a.yaml")ask:while(1):x=f.readline()if(x):if(x==k.readline()):passelse:print("notequal")else:print("end...

ModuleNotFoundError: No module named 'pymouse'

ModuleNotFoundError: No module named 'pymouse'

 pipinstallpymouse ...

python 操作记事本

python 操作记事本

 需事先打开记事本,再运行下面脚本#encoding:utf-8importwin32apiimportwin32guiimportwin32conprint("Hello,world!")deffind_idxSubHandle(pHandle,winClass,index=0):"""...

python+win32+ie浏览器操作   TypeError: getElementById() takes exactly 1 argument (2 given)

python+win32+ie浏览器操作 TypeError: getElementById() takes exactly 1 argument (2 given)

 使用body操作#-*-coding:UTF-8-*-importwin32com.clientfromtimeimportsleepsecond=win32com.client.DispatchEx("InternetExplorer.Application")second.Navig...