我在Linux虚拟机上使用selenium和phantom-js web驱动程序。 因为似乎幻像的每个实例都消耗了太多内存,在三个实例之后虚拟机崩溃并且我必须重新启动机器。
有没有办法保证虚拟机不会崩溃或减少幻像的巨大内存使用量?
service_args = [
'--ignore-ssl-errors=true',
'--proxy=' + proxyIP + ':' + str(proxyPort),
'--proxy-type=http',
]
self.browser = Browser(driver_name="phantomjs", service_args=service_args)
答案 0 :(得分:2)