WEB自动化(JAVA版)——MacOS chromedriver无法启动Chrome浏览器(Error: “chromedriver” cannot be opened)

WEB自动化(JAVA版)——MacOS chromedriver无法启动Chrome浏览器(Error: “chromedriver” cannot be opened)_第1张图片
Error: “chromedriver” cannot be opened because the developer cannot be verified. Unable to launch the chrome browser
英文翻译成中文,意思就是:
“由于无法验证开发人员,因此无法打开” chromedriver""。
" macOS无法验证此应用程序没有恶意软件。"
MacOS Catalina: Version 10.15.7

解决方案

  1. 打开终端
  2. 导航至chromedriver文件所在的路径
  3. 执行以下任一命令

Command1: xattr -d com.apple.quarantine <可执行文件的名称>

/eclipse-workspace/webauto/src/test/resources
$ xattr -d com.apple.quarantine chromedriver

(or)

Command2: spctl --add --label’Approved’< of-executable>

注意:此功能仅适用于上述文件命令被执行。如果下载了新的chromedriver,则必须在新下载的文件上再次执行命令

可参阅:

  1. https://www.it1352.com/1892752.html
  2. https://www.e-learn.cn/topic/3559916

你可能感兴趣的:(WEB端自动化,java,chrome,selenium)