我希望你能帮助我。Selenium 在 Docker 中无头运行。我可以从我的 Grid 访问 Web 服务器,打开 google 并执行 Selenium Teststeps 没问题。
现在我想用特定的语言环境测试我的应用程序。
@Before
public void setUp() throws Exception {
selenium = new DefaultSelenium("localhost",4444,"*firefox","http://wildfly:8080");
selenium.start();
}
@Test
public void testSeleniumSupplier() throws Exception {
selenium.open("/");
selenium.click("link=Lieferant");
不幸的是我还没有开发这个应用程序,我只是在测试它。我已经打开了一个错误,我无法使用语言环境访问该站点。我需要使用语言环境访问此页面。如何在 Selenium 或 Docker 中设置它以访问具有德语语言环境的站点?使用 Webdriver 我会知道如何更改,但不是在 Selenium Grid 中,我是 Selenium Grid 的新手。
非常感谢您的帮助:)