0

关于这个主题有大量的帖子,但由于某种原因,我发现几乎没有与 Chrome 相关(似乎最近添加了对 headless 的支持)。测试使用浏览器在本地运行

  1. 是否可以从 Java 触发 Xvfb 显示,以便我可以在一个地方管理所有内容?我宁愿不必这样做:

    Xvfb :1 -screen 0 1024x768x24 &

通过命令行。运行显示器然后关闭它会很有用。

  1. 以编程方式将环境属性设置为 ChromeDriver是我发现的解决方案。

问题?我无法让它在 Ubuntu 机器上运行。

我收到的错误是:

/home/ubuntu/myproject/conf/chromedriver: 1: Syntax error: Unterminated quoted string

我正在使用的测试类:

import java.io.File;

import org.openqa.selenium.By;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.chrome.ChromeDriver;
import org.openqa.selenium.chrome.ChromeDriverService;

import play.Logger;
import utils.LocalInfo;

import com.google.common.collect.ImmutableMap;

public class TestCI {

    private WebDriver driver;

    @SuppressWarnings("deprecation")
    public TestCI(String url) {

        if (!LocalInfo.isEC2()) {

            Logger.info("Running tests by opening a browser...");

            System.setProperty("webdriver.chrome.driver", "conf/chromedriver");

            setWebDriver(new ChromeDriver());

        } else {

            Logger.info("Running tests headlessly...");

            String xPort = System.getProperty("Importal.xvfb.id", ":1");

            ChromeDriverService service = new ChromeDriverService.Builder()
                    .usingChromeDriverExecutable(new File("conf/chromedriver"))
                    .usingAnyFreePort()
                    .withEnvironment(ImmutableMap.of("DISPLAY", xPort)).build();

            setWebDriver(new ChromeDriver(service));

        }

        getWebDriver().get("http://www.google.com");

        try {
            someUITest();
        } catch (Exception e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        }

        getWebDriver().close();

    }

    public WebDriver getWebDriver() {
        return driver;
    }

    public void setWebDriver(ChromeDriver driver) {
        this.driver = driver;
    }

    public void someUITest() throws Exception {

        getWebDriver().findElement(By.name("q"));

    }

}
4

1 回答 1

0

我切换到 chromedriver for linux,它摆脱了未终止的引用字符串错误http://code.google.com/p/chromedriver/downloads/list

于 2013-02-20T14:03:14.140 回答