#sele

python用selenium获取html标签内容和属性值

举个栗子百度搜索右上角有个“百度首页”的小标签链接html:<aclass="toindex"href="/">百度首页</a>xpath为://*[@id="u"]/a[1]获取标签内容,也就是“百度首页“”这几个字python:a=...

selenium滚动条

运行python时出现报错报错原因:要点击的元素已经加载,但是界面没有显示出来,需要拉滚动条才能显示出来程序如下:fromseleniumimportwebdriverfromtimeimportsleepdriver=webdriver.Chrome()driver.get("https://www.baidu.co...
代码星球 ·2020-06-27

selenium等待

有三种等待方法1.time.sleep(5) 简单粗暴,强制等待5秒2.隐式等待 driver.implicityly_wait(10) 在所有执行前,如果没有找到都等待10秒,我试了,不好用,好多都不起作用,为什么不知道3.显式等待,针对某个元素,找不到之前等待,找到之后立刻执行下一句,...
代码星球 ·2020-06-27

selenium定位

https://www.cnblogs.com/programer-xinmu78/p/10881766.html https://www.cnblogs.com/eastonliu/p/9088301.html https://www.cnblogs.com/hanmk/p/8997786.htm...
代码星球 ·2020-06-27

用selenium启动chrome浏览器

python3.7pycharm1.安装seleniumpip3installselenium 2.下载与chrome匹配的chromdriver.exe,放到项目的解释器路径下,跟python.exe同一个路径  随笔最后附上匹配列表和下载链接注:如果chromedriver.exe与c...

JQuery使用trigger模拟触发selete的选择change事件

<!DOCTYPEHTML><htmllang="en-US"><head><metacharset="UTF-8"><title>easonjim</title><scriptsrc="scripts/jquery.js"type="tex...

python selenium.common.exceptions.InvalidSelectorException: Message: Locator Strategy 'css selector' is not supported for this session

pythonselenium.common.exceptions.InvalidSelectorException:Message:LocatorStrategy'cssselector'isnotsupportedforthissession或者 cannotimportname'webdriver'fro...

selenium.common.exceptions.UnexpectedAlertPresentException: Alert Text: None;Message: unexpected alert open: {Alert text : 您点击的频率过快!请稍后再试}

报错Traceback(mostrecentcalllast):File"C:/myFiles/code/cnki/cnki_1/core/knavi.py",line281,in<module>main()File"C:/myFiles/code/cnki/cnki_1/core/knavi.py",li...

create table like 和create table select 比较

语法:CREATE[TEMPORARY]TABLE[IFNOTEXISTS]tbl_name   [(create_definition,...)]   [table_options][select_statement] CREATE[TEMPORA...

jQuery cxSelect 多级联动下拉菜单

http://www.jq22.com/jquery-info3238插件描述:cxSelect是基于jQuery的多级联动菜单插件,适用于省市、商品分类等联动菜单。列表数据通过AJAX获取(需要在服务器环境运行),也可以使用变量自定义,数据内容使用JSON格式。载入JavaScript文件1<scriptsrc...

ajax处理select下拉表单

$('#gameid').change(function(){vargameid=$(this).val();if(this.value!=''){$.ajax({url:'/market/task/?act=ajax_get_game_server_list&gameid='+gameid,type:'get...

让 select 的 option 标签支持事件监听(如复制操作)

这标题,让option支持事件监听,应该不难的呀,有什么好讲的?其实还是有的,默认在浏览器代码是无法直接对option标签进行操作的,不仅包括JS事件监听,还是CSS样式设置查了一些资料,姑且认为它是系统OS级别处理的 想自定义option的样式,很多人会建议用 <ul><li&g...

Select、Poll、Epoll、 异步IO 介绍

一、概念相关介绍 同步IO和异步IO,阻塞IO和非阻塞IO分别是什么,到底有什么区别?不同的人在不同的上下文下给出的答案是不同的。所以先限定一下本文的上下文。本文讨论的背景是Linux环境下的networkIO。在进行解释之前,首先要说明几个概念:-用户空间和内核空间-进程切换-进程的阻塞-文件描述符-缓存I...
代码星球 ·2020-06-16

python爬虫之selenium+打码平台识别验证码

1、常用的打码平台:超级鹰、打码兔等2、打码平台在识别图形验证码和点触验证码上比较好用  (1)12306点触验证码1fromseleniumimportwebdriver2fromselenium.webdriver.supportimportexpected_conditionsasEC3fromselenium....

selenium-登录C语言中文网

fromseleniumimportwebdriverfromselenium.webdriver.support.waitimportWebDriverWaitfromselenium.webdriver.supportimportexpected_conditionsasECfromselenium.webdriv...
首页上一页...2829303132...下一页尾页