selenium + phantomJS 小Demo
发表于
更新于
本文字数:
257
阅读时长 ≈
1 分钟
爬虫tips
发表于
更新于
本文字数:
688
阅读时长 ≈
3 分钟
selenium学习
发表于
更新于
本文字数:
325
阅读时长 ≈
1 分钟
声明浏览器对象
ubuntu下打不开chrome浏览器,重新安装了chromium-browser,并使用下面的声明语句
1 | browser = webdriver.Chrome("/usr/lib/chromium-browser/chromedriver") |
方案来源https://stackoverflow.com/questions/22476112/using-chromedriver-with-selenium-python-ubuntu
貌似添加chrome的path也能解决
获取元素
可以通过id,name,classname,xpath,css_selector等获得
两种写法:
Integer Break
发表于
更新于
本文字数:
210
阅读时长 ≈
1 分钟
Given a positive integer n, break it into the sum of at least two positive integers and maximize the product of those integers. Return the maximum product you can get.
For example, given n = 2, return 1 (2 = 1 + 1); given n = 10, return 36 (10 = 3 + 3 + 4).
Note: You may assume that n is not less than 2 and not larger than 58.
思路: