首页 > 其他分享 >解决:DeprecationWarning: executable_path has been deprecated, please pass in a Service object

解决:DeprecationWarning: executable_path has been deprecated, please pass in a Service object

时间:2022-10-27 20:22:54浏览次数:87  
标签:webdriver executable DeprecationWarning Service Chrome pass

参考了网上已有的资料,原因是因为:

driver = webdriver.Chrome({Path of ChromeDrive})

填写了路径之后,会出现报错的情况;

解决方法:

from selenium.webdriver.chrome.service import Service

MoKinChrome = Service(r{Path of ChromeDrive})
driver = webdriver.Chrome(service=MoKinChrome)

需要注意的是,Service需要大写S

标签:webdriver,executable,DeprecationWarning,Service,Chrome,pass
From: https://www.cnblogs.com/MoKinLi/p/16833578.html

相关文章

  • Service超时导致应用ANR问题记录
    需求:需要机器在第一次开机后,后台执行Service拷贝文件到机器的另一个目录Bug描述:发现拷贝不全,有一部分文件没有拷贝,抓取日志分析:10-1508:27:49.39116691669DTXZ......
  • k8s-Service
    一、背景通过pod控制器Deployment创建的一组Pod来提供具有高可用性的服务。虽然每个Pod都会分配一个单独的PodIP,然而却存在如下两问题:pod重建后,pod的ip会发生变化po......
  • Istio ServiceEntry
    ServiceEntry介绍ServiceEntry用于将未能自动添加至网格中的服务,以手动形式添加至网格中,以使得网格内的自动发现机制能够访问或路由到这些服务未能自动添加至网格中的......
  • Android使用AccessibilityService
    介绍AccessibilityService设计初衷在于帮助残障用户使用android设备和应用,在后台运行,可以监听用户界面的一些状态转换,例如页面切换、焦点改变、通知、Toast等,并在触发Acc......
  • John Deere Service Advisor Software v5.3
    JohnDeereServiceAdvisoristheDiagnosticKitthatallowsuserstoperformdiagnosticforserviceofagricultural,construction,andforestryequipment.Wit......
  • net6 'MD5CryptoServiceProvider' 已过时 处理方法.'
    将项目升级到.NET6后,编译器开始抱怨以下警告消息:warningSYSLIB0021:“MD5CryptoServiceProvider”已过时:“Derivedcryptographictypesareobsolete.UsetheCre......
  • Field *****Service in com.ruoyi.web.slweb.controller.SysApplicationMapper requir
      这个问题直接去service看一下@Service这个注解有没有漏写,我的原因是在git上面拉下来的代码impl里面的的serviceimpl没有上传......
  • k8s之serviceAccount创建
    1、创建serviceAccountvim serviceAccount.yaml---apiVersion:v1kind:ServiceAccountmetadata:name:springcloud-kubernetesnamespace:dev---kind:Rol......
  • 1.1 WCF SOA架构和webservice
    1.什么是SOA?SOA全称:面向服务架构(serviceOrientedArchitecture),它是一种组件架构模式。一、定义1.WebService:严格来说是行业标准,不是技术,使用XML扩展标记语言来表示数据......
  • 六、Service
    6.1 Service的概念 KubernetesService定义了这样一种抽象:一个Pod的逻辑分组,一种可以访问它们的策略——通常称为微服务。这一组Pod能够被Service访......