有人知道为什么 chrome 参数不起作用吗?
import java.net.MalformedURLException;
import java.net.URL;
import java.util.Arrays;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.remote.DesiredCapabilities;
import org.openqa.selenium.remote.RemoteWebDriver;
public class testowa {
public static void main(String[] args) throws InterruptedException {
DesiredCapabilities capability = DesiredCapabilities.chrome();
capability.setCapability("chrome.args",
Arrays.asList("--disable-web-security", "--start-maximized"));
WebDriver driver = null;
try {
URL hub_url = new URL("http://192.168.56.101:4444/wd/hub");
driver = new RemoteWebDriver(hub_url, capability);
} catch (MalformedURLException e) {
e.printStackTrace();
}
driver.get("file:///home/test/www/index.html");
}
}
我也试过在切换器之前没有“--”并且只给出一个参数...... Chrome 启动,但没有激活标志。
我使用最新的 chromedriver。