元素定位到Window/Custom/Custom[1]/Custom[1]/Custom[1]/Edit,并输入内容https://fanyi.sogou.com/picture,用python写
时间: 2024-01-24 19:02:57 浏览: 147
你可以使用 Python 的 Selenium 库来实现这个操作,以下是示例代码:
```python
from selenium import webdriver
from selenium.webdriver.common.keys import Keys
# 启动 Chrome 浏览器
driver = webdriver.Chrome()
# 打开网页
driver.get('https://fanyi.sogou.com/picture')
# 定位元素
element = driver.find_element_by_xpath('//Window/Custom/Custom[1]/Custom[1]/Custom[1]/Edit')
# 输入内容
element.send_keys('https://fanyi.sogou.com/picture')
element.send_keys(Keys.RETURN)
# 关闭浏览器
driver.quit()
```
需要注意的是,你需要安装 Chrome 浏览器和相应版本的 ChromeDriver,并将 ChromeDriver 的路径添加到系统环境变量中。
阅读全文