我有最新的 Selenium、OSX 和 Safari 版本,但我无法使用这样简单的代码打开 Safari 驱动程序:
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.safari.SafariDriver;
public class SafariDriverDemo {
public static void main(String[] args) throws InterruptedException {
WebDriver driver;
driver = new SafariDriver();
String baseURL = "https://www.google.com";
driver.get(baseURL);
Thread.sleep(3000);
driver.quit();
}
}
- 我在控制台中得到以下内容:“密码:密码:密码:”
- 无论我写什么密码,控制台都会显示:屏幕截图 2
尽管我启用了“允许远程自动化”,但仍然如此。我尝试通过键入'/usr/bin/safaridriver'从终端授权驱动程序,这就是结果
Could not start server: must specify at least one configuration argument.
Usage: safaridriver [options]
-h, --help Prints out this usage information.
-p, --port Port number the driver should use. If the server
is already running, the port cannot be changed.
If port 0 is specified, a default port will be used
我不知道从这里采取什么行动,也许这个问题可以从控制台解决。