请问各位大神,这是什么情况???
Redémarrez votre ordinateur et essayez.
详见http://stackoverflow.com/questions/36153...Résolu en changeant la fonction dans selenium.webdriver.phantomjs.service.py comme suit :
était
def send_remote_shutdown_command(self): if self._cookie_temp_file: os.remove(self._cookie_temp_file)
après avoir ajouté la construction try/sauf :
def send_remote_shutdown_command(self): try: if self._cookie_temp_file: os.remove(self._cookie_temp_file) except PermissionError: pass
Redémarrez votre ordinateur et essayez.
详见http://stackoverflow.com/questions/36153...
Résolu en changeant la fonction dans selenium.webdriver.phantomjs.service.py comme suit :
était
après avoir ajouté la construction try/sauf :