Important Notice: We're experiencing email notification issues. If you've posted a question in the community forums recently, please check your profile manually for responses while we're working to fix this.

On Monday the 3rd of March, around 5pm UTC (9am PT) users may experience a brief period of downtime while one of our underlying services is under maintenance.

Eheka Pytyvõha

Emboyke pytyvõha apovai. Ndorojeruremo’ãi ehenói térã eñe’ẽmondóvo pumbyrýpe ha emoherakuãvo marandu nemba’etéva. Emombe’u tembiapo imarãkuaáva ko “Marandu iñañáva” rupive.

Kuaave

Disable security features in Firefox

  • 3 Mbohovái
  • 27 oguereko ko apañuãi
  • 5 Hecha
  • Mbohovái ipaháva cor-el

more options

I am testing a website using selenium web driver. The particular site contains nested iframes. I cannot access content of Iframes, because of the Same Origin Policy. Therefore I disabled web security in chrome web driver and access those contents using following Jquery script.

$(‘#data’).find(‘iframe’).contents().find(‘html’) I achieved this in chrome by setting these features when it is initializing.

options.AddArguments("--allow-file-access-from-files"); options.AddArguments("--disable-web-security");

Now I need to do this in Firefox. I followed instructions in this URL. But that is not working.

about:config -> security.fileuri.strict_origin_policy -> false

I haven't got what I expected using above edits. Error was Permission denied to access property 'document'

There should be way to achieve this. I am using Firefox 29.0.1

I am testing a website using selenium web driver. The particular site contains nested iframes. I cannot access content of Iframes, because of the Same Origin Policy. Therefore I disabled web security in chrome web driver and access those contents using following Jquery script. $(‘#data’).find(‘iframe’).contents().find(‘html’) I achieved this in chrome by setting these features when it is initializing. options.AddArguments("--allow-file-access-from-files"); options.AddArguments("--disable-web-security"); Now I need to do this in Firefox. I followed instructions in this URL. But that is not working. about:config -> security.fileuri.strict_origin_policy -> false I haven't got what I expected using above edits. Error was Permission denied to access property 'document' There should be way to achieve this. I am using Firefox 29.0.1

Opaite Mbohovái (3)

more options

You may need to change the second one as well. security.fileuri.strict_origin_policy;true network.http.referer.XOriginPolicy

more options

I tired set values to network.http.referer.XOriginPolicy. But it was not working,,,Can you tell me the values that relate with parameter. I couldn't able to find references.

Thank u for your reply.

more options