关于selenium的定位问题
像这种要定位onclick,并点击的,要怎么写我曾经写的一段代码:
drv.execute_script("gotoPage("+str(x)+");") wp231957 发表于 2022-10-3 11:49
我曾经写的一段代码:
这个要怎么用{:10_266:} xyh2695368537 发表于 2022-10-3 12:28
这个要怎么用
这就是selenium驱动下面的一个方法,直接用就行,括号里面是网页里面js函数名 wp231957 发表于 2022-10-3 12:31
这就是selenium驱动下面的一个方法,直接用就行,括号里面是网页里面js函数名
不会用{:5_100:} xyh2695368537 发表于 2022-10-3 13:05
不会用
你的是内网还是外网,方便发网址?? wp231957 发表于 2022-10-3 13:09
你的是内网还是外网,方便发网址??
http://ad.jxzyz.cn/vol/index.php/Home/Index/zc.html
注册界面,我想要浏览器选择出生日期 xyh2695368537 发表于 2022-10-3 13:14
http://ad.jxzyz.cn/vol/index.php/Home/Index/zc.html
注册界面,我想要浏览器选择出生日期
from selenium import webdriver
from selenium.webdriver.common.by import By
drv=webdriver.Chrome(r"d:\python310\chromedriver.exe")
drv.get("http://ad.jxzyz.cn/vol/index.php/Home/Index/zc.html")
js = "document.getElementById('birthday').removeAttribute('readonly')"
drv.execute_script(js)
birthday = drv.find_element(By.ID,"birthday")
birthday.send_keys('2022-10-03')
wp231957 发表于 2022-10-3 14:05
成功了!感谢!!!{:5_106:}
百度上说removeAttribute(“targer”),表示删除元素
我能问下,这个‘readonly’要怎么找嘛{:5_96:}
document.getElementById('birthday').removeAttribute('readonly')
xyh2695368537 发表于 2022-10-3 14:49
成功了!感谢!!!
百度上说removeAttribute(“targer”),表示删除元素
这个是那个日期控件的的属性,设为只读,则不接受键盘输入 wp231957 发表于 2022-10-3 14:57
这个是那个日期控件的的属性,设为只读,则不接受键盘输入
okok,懂了,感谢!!!!
页:
[1]