我在Selenium中的程序没有停止执行什么?

时间:2020-04-02 19:52:35

标签: java maven selenium

我在Maven中构建了Selenium测试用例,并在主要方法中构建了以下内容:

  ...
  String url = 'https://maps.googleapis.com/maps/api/place/nearbysearch/json?location=${lat},$lng&radius=$radius&type=restaurant&key=$api';
  ...

我的chromedriver已下载并移动到项目中名为“ webdriver”的文件夹中。启动程序后,将打开chrome浏览器,然后关闭。

但是,即使在chrome浏览器关闭并执行了“ driver.quit()”之后,为什么不退出并终止其执行?

2 个答案:

答案 0 :(得分:1)

subject

在上面的示例中,您应该获取编译时异常,而不是运行会话。

答案 1 :(得分:0)

我仍然不知道为什么会这样。但是,我可以使用System.exit(1)退出程序。