我问过similar question关于如何在使用selenium之前用Python编辑网页,但是因为那里没有任何地方(我希望能够在仍然拥有所有内容的浏览器中执行此操作)保存的cookie,密码,书签等)我想扩大范围。使用您知道的任何模块,如何在浏览器中打开网站,并使用Python脚本编辑元素?
例如,我喜欢我的脚本做这样的事情......
open google.com
find the element that corresponds to the google logo
hide the element
如果有帮助,我会使用谷歌浏览器在Macbook上
答案 0 :(得分:0)
您仍然可以通过selenium
执行此操作,找到元素并编辑style
通过"执行脚本":
elm = driver.find_element_by_id("myid")
driver.execute_script("arguments[0].style.display = 'none';", elm)