测试插件时保留cookie
我正在使用 Firefox Add-on SDK 开发一个插件。我在测试时使用 cfx 来运行我的插件。
当突出显示到 Twitter 时,该应用程序会发布一些文本。
问题是每次我修改代码时我都必须重新登录 Twitter。有什么方法可以确保在测试/调试时保存 cookie?与正常打开和关闭 Firefox 时发生的情况类似吗?
I'm developing an addon using Firefox Add-on SDK. I am using cfx
to run my addons when testing.
The app posts some text when highlighted to twitter.
The problem is each time I modify the code I have to log back into twitter. Is there any way to ensure cookies are saved whilst testing/debugging? Similar to what happens when you open and close Firefox normally?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
调用
cfx
的参数是什么?默认情况下,cxf
在新配置文件中执行。您需要使用
-p PROFILEDIR
或--profiledir=PROFILEDIR
> 使用特定配置文件的参数以及相关设置。来自注释@ https://jetpack .mozillalabs.com/sdk/1.0b5/docs/dev-guide/addon-development/cfx-tool.html
What are your parameters for calling
cfx
? By default,cxf
executes in a new profile.You need to use
-p PROFILEDIR
or--profiledir=PROFILEDIR
param to use a specific profile, and associated settings.From notes @ https://jetpack.mozillalabs.com/sdk/1.0b5/docs/dev-guide/addon-development/cfx-tool.html