본 사이트는 여러분의 사용자 경험을 개선하기 위해 유지 보수를 진행하는 동안 기능이 제한됩니다. 도움말로 문제가 해결되지 않고 질문을 하고 싶다면 Twitter의 @FirefoxSupport 및 Reddit의 /r/firefox 채널을 활용하세요.

Mozilla 도움말 검색

고객 지원 사기를 피하세요. 저희는 여러분께 절대로 전화를 걸거나 문자를 보내거나 개인 정보를 공유하도록 요청하지 않습니다. "악용 사례 신고"옵션을 사용하여 의심스러운 활동을 신고해 주세요.

자세히 살펴보기

How can I disable the "Improve Firefox" suggestion which appeared after FF8 update? No any choise helps to avoid the popup appearance next time.

  • 6 답장
  • 28 이 문제를 만남
  • 9 보기
  • 최종 답변자: David Xie

more options

I am using FF8 with Selenium RC testing framework. When I installed the last FF update the popup YesNo dialog "Would you like to help improve ..." began to appear before each test run. So, tests stopped running on this popup and my problem is that I can't disable this popup for the next times. I mean I select Yes or No, popup disappears, but still appears during the next test run. How can I disable this popup at all?

I am using FF8 with Selenium RC testing framework. When I installed the last FF update the popup YesNo dialog "Would you like to help improve ..." began to appear before each test run. So, tests stopped running on this popup and my problem is that I can't disable this popup for the next times. I mean I select Yes or No, popup disappears, but still appears during the next test run. How can I disable this popup at all?

글쓴이 tenety 수정일시

선택된 해결법

Hi guys! Thanks to all of you for cooperation and willing to help. I've summarized all your advices, so the following 3 steps sort the problem out for FF8 and make my tests to run fine:

  1. Create and configure a new FF profile, using these instruction and suggestions . Don't switch your FF to default profile at the end.
  2. Then perform the first 6 steps by SafeBrowser (see above) for the new profile. Switch to default profile (in firefox -p).
  3. Don't forget to use your new profile when running Selenium Server (-firefoxProfileTemplate command line parameter) or set Selenium to use this profile when starting a browser from Salenece.
문맥에 따라 이 답변을 읽어주세요 👍 1

모든 댓글 (6)

more options

Try setting the preference toolkit.telemetry.prompted to "true" in about:config

  1. type about:config in the URL/Location/Address bar and press the Enter key
  2. if you see a warning, accept it (promise to be careful)
  3. Filter = toolkit.telemetry.prompted
  4. double click the preference in the lower pane to toggle it to true (or right-click the preference in the lower pane and choose "Toggle")
  5. preference in lower pane should now be bold, show "user set" and value should be "true"
  6. close the about:config tab
  7. See --> http://kb.mozillazine.org/Editing_configuration


If this reply solves your problem, please click "Solved It" next to this reply when signed-in to the forum.

글쓴이 SafeBrowser 수정일시

more options

If you create a new profile with each test run then you can use a file user.js to initialize pref and add a line with the above mentioned pref in it.

Create a default template folder \defaults\profile in the Firefox program folder and place the user.js file in it.


user_pref("toolkit.telemetry.prompted", true);
more options

Here's my solution; hope it will be helpful to you:

1. Create a file called 'user.js' with the following:

user_pref("toolkit.telemetry.enabled", false); user_pref("toolkit.telemetry.prompted", 2); user_pref("toolkit.telemetry.rejected", true);

Note: the first line isn't necessary for Firefox 9, seems like Mozilla have changed things around in the new version (I'm using FF9 Beta 3).

2. Open up your prefs.js and make sure there's nothing about "toolkit.telemetry" in that file.

3. Deploy your Firefox profile with the user.js file inside.

That should be it! This is our solution with our public Firefox deployment.

more options

In Firefox 8 the toolkit.telemetry.prompted pref is still a Boolean, so your solution is only for Firefox 9+ versions where it has been changed to an Integer (Number).

more options

선택된 해결법

Hi guys! Thanks to all of you for cooperation and willing to help. I've summarized all your advices, so the following 3 steps sort the problem out for FF8 and make my tests to run fine:

  1. Create and configure a new FF profile, using these instruction and suggestions . Don't switch your FF to default profile at the end.
  2. Then perform the first 6 steps by SafeBrowser (see above) for the new profile. Switch to default profile (in firefox -p).
  3. Don't forget to use your new profile when running Selenium Server (-firefoxProfileTemplate command line parameter) or set Selenium to use this profile when starting a browser from Salenece.

글쓴이 tenety 수정일시

more options

@cor-el: thanks for pointing it out; would be great if Mozilla can inform System Admins about changes like these!