Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想使用带有 splinter 的特定配置文件。但我不知道我必须把它放在哪个位置才能让它工作。
在此链接中,您只需提供您的自定义配置文件名称作为字符串,如下所示
from splinter import Browser browser = Browser('firefox', profile='my_profile')
根据这个问题,传递自定义配置文件名称不起作用。但是,将完整路径传递给配置文件确实如此。