天天看點

selenium實作百度翻譯(漢語翻譯英語)

from selenium import webdriver

from selenium.webdriver.chrome.options import Options

import time

chrome_options = Options()

chrome_options.add_argument("--window-size=1920,1080")

chrome_options.add_argument('--headless')

chrome_options.add_argument('--disable-gpu')#無頭模式

driver= webdriver.Chrome(chrome_options=chrome_options)

tran=input("輸入要翻譯的漢語")

print("翻譯中,請稍後")

driver.get("https://fanyi.baidu.com/?aldtype=16047#zh/en/"+tran)#打開翻譯首頁

time.sleep(3)#等待翻譯

b=driver.find_element_by_xpath("//*[@id='main-outer']")#翻譯結果的xpath

b=driver.find_element_by_xpath("/html/body/div[1]/div[3]/div/div/div[1]/div[2]/div[1]/div[2]/div/div/div[1]/p [2]/span")

c=b.text#提取翻譯結果

driver.quit()#關閉浏覽器

print("翻譯結果")

print(c)

with open ("翻譯結果.txt","a")as f:

      f.write(tran)

      f.write("          ")

      f.write(c)

      f.write("\n")

print("輸入内容寫入記事本翻譯結果中")

time.sleep(15)

#需要selenium庫和谷歌浏覽器  谷歌浏覽器驅動,并且配置谷歌浏覽器環境哦

#本人很多Python存放于http://101.200.72.108:5000/py