摘要:
From: http://www.runoob.com/w3cnote/git-guide.html 如果你是一枚Coder,但是你不知道Github,那么我觉的你就不是一个菜鸟级别的Coder,因为你压根不是真正Coder,你只是一个Code搬运工。 但是你如果已经在读这篇文章了,我觉的你已经知道 阅读全文
摘要:
From: https://www.cnblogs.com/qianqiannian/p/6011404.html git branch 和 git checkout经常在一起使用,所以在此将它们合在一起 1.Git branch 一般用于分支的操作,比如创建分支,查看分支等等, 1.1 git b 阅读全文
摘要:
From: https://jingyan.baidu.com/article/359911f5a4fe4b57fe03060d.html 正常使用git时,提交代码五部曲。 正常使用git时,提交代码五部曲。 正常使用git时,提交代码五部曲。 正常使用git时,提交代码五部曲。 正常使用git时 阅读全文
摘要:
mydict.update({'newkey':'newvalue'}) 阅读全文
摘要:
I have a general test class in my nosetests suit and some sub-classes, inheriting from it. The config is likewise: class CGeneral_Test(object):: """Th 阅读全文
摘要:
上层div的xpath=//*[@id="launchpadOptionsList"] 其下的所有li的最后一个是//*[@id="launchpadOptionsList"]/li[last()] 再往下面的img可以用//*[@id="launchpadOptionsList"]/li[last 阅读全文
摘要:
https://stackoverflow.com/questions/47689936/unable-to-scroll-and-select-desired-year-from-calender-in-webdriver-python 阅读全文
摘要:
From: https://blog.csdn.net/q1059081877q/article/details/50687683 >>> str = 'http://manualfile.s3.amazonaws.com/pdf/gti-chis-1-user-9fb-0-7a05a56f0b91 阅读全文
摘要:
From: https://www.cnblogs.com/yoyoketang/p/6517477.html 前言: 在脚本中加入太多的sleep后会影响脚本的执行速度,虽然implicitly_wait()这种方法隐式等待方法一定程度上节省了很多时间。 但是一旦页面上某些js无法加载出来(其实界 阅读全文
摘要:
def set_chrome_pref(self): chromeOptions = webdriver.ChromeOptions() prefs = {"download.default_directory": 'des_dir'} chromeOptions.add_experimental_ 阅读全文