您现在的位置是:课程教程文章

python3 selenium如何清空输入框中的内容

2023-12-18 19:40课程教程文章 人已围观

使用场景:搜索的时候,我需要清除搜索框中其他的关键词

使用方法:driver.clear()

举例说明:

#  设定搜索内容
search_content = ['java', '测试']
# 定位搜索框的位置
search_key = self.driver.find_element_by_css_selector("input.search-key")
# 清空搜索框中的内容
search_key.clear()
# 搜索
search_key.send_keys(random.choice(self.search_content))

更多技术请关注Python视频教程。

课程教程:python3 selenium如何清空输入框中的内容

上一篇:python如何显示中文字体

下一篇:没有了

站点信息

  • 文章统计篇文章