跳至主要内容

博文

目前显示的是 一月, 2020的博文

python 之 网页自动化测试

https://opensourceforu.com/2017/10/splinter-easy-way-test-web-applications/ https://splinter.readthedocs.io/en/latest/index.html https://sites.google.com/a/chromium.org/chromedriver/home 下载谷歌浏览器版本对应的 chromedriver.exe 并将其加入环境变量path中 Anaconda3 (64-bit) 打开Anaconda Prompt,运行以下命令 jupyter nbconvert --to html your_notebook_name.ipynb 可将ipynb格式文件转换为html格式 (base) C:\Users\DZL>jupyter nbconvert --to html Untitled40.ipynb [NbConvertApp] Converting notebook Untitled40.ipynb to html [NbConvertApp] Writing 361412 bytes to Untitled40.html 当我打开Jupyter Notebook(以前为IPython)时,默认为C:\Users\USERNAME 打开当前工作目录,中间有空格 (base) C:\Users\DZL>start . 或者在Jupyter Notebook开python页面中输入pwd 或者cd jupyter notebook --help-all txt = ",,,,,rrttgg.....banana....rrr" x = txt.strip(",.grt") print(x) >>> banana from selenium import webdriver # 添加驱动 driver = webdriver. Chrome ( r 'D: \c hromedriver' ) driver. get ( 'https://www.kuaikanmanhua.com/web/topic/1338/' ) #driver....

python 之 OS模块

Python中的OS模块提供了用于创建和删除目录(文件夹),获取其内容,更改和标识当前目录等功能。 http://python101.pythonlibrary.org/chapter16_os.html https://www.tutorialsteacher.com/python/os-module os.mkdir()函数:创建一个新目录 >>> os.mkdir('c:\\123') os.getcwd()函数:获取当前工作目录 >>> os.getcwd() os.chdir()函数:更改当前工作目录 >>> os.chdir("c:\\123") >>> os.chdir("..") os.rmdir()函数:删除空目录,不能删除当前所在目录 >>> os.rmdir("123") os.listdir()函数:返回指定目录下的所有文件和目录的列表,未指定任何目录,则将返回当前所在目录 >>> os.listdir("C:\python38") >>> os.listdir() Python检查文件或目录是否存在  os.path.exists() 使用path.exists可以快速检查文件或目录是否存在 os.path.isfile() 我们可以使用isfile命令来检查给定的输入是文件还是目录。 os.path.isdir() 如果我们想确认给定路径指向目录,我们可以使用os.path.dir()函数  import   os from   os   import  path   def  main ( ) :      # Print the name of the OS      print ( os . name ) #Check for item existence and type print ( "Item exists:"  +  str ( path. exists ( "1.xlsx" ) ) ) print ( "Item is a f...