gpt4 book ai didi

python - 使用 execute_script 修改 Selenium 中的样式属性,但属性的值没有改变

转载 作者:太空宇宙 更新时间:2023-11-03 11:23:16 25 4
gpt4 key购买 nike

在 Python 中使用 Selenium 和 PhantomJS

我需要将输入标签的样式属性设置为“”,因为它设置为“display:None”,这会阻止我在 Selenium 中使用 send_keys 填充输入。

我正在使用 execute_script 来实现这一点。 execute_script 运行,但样式属性保持不变。为什么 PhantomJS 不改变样式属性?

我要删除带有样式属性的 HTML:

<input type="password" size="10" id="navbar_password" name="vb_login_password" tabindex="102" class="textbox" style="display: none;">

Python Selenium 脚本:

为什么 style 属性的值没有被 execute_script 改变?

password = driver.find_element_by_name("vb_login_password")

driver.execute_script("arguments[0]['style'] = arguments[1]", password, '')

print(password.get_attribute("style"))

//display:none;

最佳答案

尝试如下:-

password = driver.find_element_by_name("vb_login_password")

password = driver.execute_script("arguments[0].style.display = 'block'; return arguments[0];", password)

print(password.value_of_css_property("display"))

#now you can set value using send_keys
password.send_keys("your value");

希望对您有所帮助...:)

关于python - 使用 execute_script 修改 Selenium 中的样式属性,但属性的值没有改变,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38680356/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com