Chromedriver:如何使用硒翻译页面



我需要在chrome浏览器中使用selenium将页面从日语翻译成英语。我尝试了不同的方法,其中一个示例代码片段如下

import java.util.concurrent.TimeUnit;
import org.junit.Test;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.chrome.ChromeDriver;
import org.openqa.selenium.chrome.ChromeOptions;
import org.openqa.selenium.remote.DesiredCapabilities;
public class Main {
private WebDriver driver=null;
WebDriverLoad a;
@Test
public void successfulDesignerLogin() throws Exception{
//      final DesiredCapabilities capabilities = DesiredCapabilities.chrome();
//        capabilities.setJavascriptEnabled(true);
String chromedriver =  "/dev/Saved/chromedriver";
System.setProperty("webdriver.chrome.driver",chromedriver);
ChromeOptions options = new ChromeOptions();
options.addArguments("--lang=en-ca");
//Map<String, Object> prefs = new HashMap<String, Object>();
//prefs.put("intl.accept_languages", "en,en_US");
//options.setExperimentalOption("prefs", prefs);

ChromeDriver driver = new ChromeDriver(options);
driver.manage().timeouts().implicitlyWait(4, TimeUnit.SECONDS);
driver.get("https://www.bbc.com/japanese");
driver.manage().timeouts().implicitlyWait(5, TimeUnit.SECONDS);
driver.close();

}
}

我尝试了几个解决方案options.addArgumentsoptions.setExperimentalOption,但都不起作用,任何人都不能告诉我什么是解决方案

您需要启用翻译并将目标语言ID添加到白名单{"from" : "to"}中。

"translate":{"enabled":"true"}
"translate_whitelists": {"ja":"en"}

在java:中

Map<String, Object> prefs = new HashMap<String, Object>();
Map<String, Object> langs = new HashMap<String, Object>();
langs.put("ja", "en");
prefs.put("translate", "{'enabled' : true}");
prefs.put("translate_whitelists", langs);
options.setExperimentalOption("prefs", prefs);

这里有一个C#版本,直接添加"翻译";以及";translate_白名单"在";AddUserProfileReference";

ChromeOptions options = new ChromeOptions();
Dictionary<string, object> LanguageList = new Dictionary<string, object>();
LanguageList.Add("fr", "en");
Dictionary<string, bool> enableObject = new Dictionary<string, bool>();
enableObj.Add("enabled", true);
options.AddUserProfilePreference("translate", enableObject);
options.AddUserProfilePreference("translate_whitelists", LanguageList);

相关内容

  • 没有找到相关文章

最新更新