扫码关注官方订阅号
请问各位大神,这是什么情况???
重启下电脑试试。
详见http://stackoverflow.com/questions/36153...Solved by changing function in selenium.webdriver.phantomjs.service.py like follow:
was
def send_remote_shutdown_command(self): if self._cookie_temp_file: os.remove(self._cookie_temp_file)
after adding try/except construction:
def send_remote_shutdown_command(self): try: if self._cookie_temp_file: os.remove(self._cookie_temp_file) except PermissionError: pass
微信扫码关注PHP中文网服务号
QQ扫码加入技术交流群
扫描下载App
Copyright 2014-2025 //m.sbmmt.com/ All Rights Reserved | php.cn | 湘ICP备2023035733号
PHP学习
技术支持
返回顶部
重启下电脑试试。
详见http://stackoverflow.com/questions/36153...
Solved by changing function in selenium.webdriver.phantomjs.service.py like follow:
was
after adding try/except construction: