【已解决】Xpath中如何判断属性值不等于某个值
crifan 7年前 (2017-12-05) 7942浏览 0评论
在用Selenium的python代码去xpath去提取和查找元素了。 现在需要去实现,判断: a的aria-label不为0 items in shopping cart 就像: <code><a id="uhf...
crifan 7年前 (2017-12-05) 7942浏览 0评论
在用Selenium的python代码去xpath去提取和查找元素了。 现在需要去实现,判断: a的aria-label不为0 items in shopping cart 就像: <code><a id="uhf...
crifan 7年前 (2017-11-26) 3503浏览 0评论
用Selenium调试打开页面: https://www.befrugal.com/home/ 时,网页加载要好半天才能结束: 2017/11/26 12:36:51 LINE 115 INFO open befrugalHomeUrl=ht...
crifan 7年前 (2017-11-25) 2809浏览 1评论
根据提示: 查看优化建议 优化您网站上的广告平衡功能 – AdSense帮助 去滑动看看效果 好像是: 目前正在59%的广告,占了收入的99% 换句话说:去掉41%的广告,只影响其中1%的广告收入。 所以可以采取此做法,点击 应用...
crifan 7年前 (2017-11-24) 3002浏览 0评论
折腾: 【记录】给Gitbook添加更多配置和功能 后,需要把编译好的gitbook上传到自己的crifan.com上。 最好的放置位置是弄个二级域名 book.crifan.com 或 gitbook.crifan.com 把book相关的内容都放...
crifan 7年前 (2017-11-22) 4402浏览 2评论
折腾: 【未解决】Mac中Selenium换用PhantomJS去模拟浏览器操作 期间,把WebDriver从chrome换成PhantomJS后,结果代码: loginElement = driver.find_element_by_id(R...
crifan 7年前 (2017-11-22) 2771浏览 0评论
之前已经实现了,Mac下的用Selenium使用chromedriver去实现模拟浏览器操作。 现在去试试,换用,据说速度更快的(无界面的headless 浏览器 )PhantomJS去看看效果。 selenium phantomJS python爬...
crifan 7年前 (2017-11-19) 4960浏览 0评论
折腾: 【已解决】Selenium出错:Message unknown error Element button is not clickable at point 期间,需要在Selenium的Python中,判断某个网页的等待的新图层消失不可见...
crifan 7年前 (2017-11-19) 5610浏览 0评论
Selenium中Python用代码: placeOrderElement = WebDriverWait(driver, gCfg[“waitTimeout”]).until(EC.element_to_be_clickab...
crifan 7年前 (2017-11-18) 4358浏览 0评论
折腾: 【已解决】Selenium中使用xpath去查找元素时是否可以设置两种规则 期间,需要去获取元素的文本的值 selenium get text selenium python get text SeleniumTwo: 34. Using g...
crifan 7年前 (2017-11-18) 4194浏览 0评论
想要把json字典对象,格式化打印出来。 python print pretty json 参考: python – How to prettyprint a JSON file? – Stack Overflow 7.12....