Running firefox addons command line

I work with 508 available website standards. There is a Firefox plugin that will help check every page on the WAVE addons website
. I have a crawler that runs through all the pages of the website.
Now I want to combine the WAVE add-ons + my crawler in order to automatically check the website as being accessible.

My question is how to run Firefox add-ons with a specific URL from the command line?

Thanks for your help,
Minh

+3
source share
2 answers

"" (, Adblock ?).

, , . , , , "".

+2

comand-, javascript, :

$ firefox 'data:text/html;charset=ISO-8859-1,
<html>
<head>
<title>TEST Demo</title>
</head>
<body>
<h3 id="title">Test demo</h3>
<script language="javascript">
window.open("http://perso.f-hauri.ch/~felix/svg/dustin_w_Clock_autonom.svg","clock","toolbar=0,location=0,status=0,menubar=0,scrollbars=1,resizable=1,width=600,height=600,top=100,left=120");
window.open("http://perso.f-hauri.ch/~felix/svg/fw.svg","netrate","toolbar=0,location=0,status=0,menubar=0,scrollbars=1,resizable=1,width=420,height=372,top=40,left=620");
var s=10;
function cntdwn()
{
  document.getElementById("title").innerHTML="Test demo: "+s;s=s-1;
  if (0 > s)
  {
    window.location="http://perso.f-hauri.ch/~felix/meteo/picture/meteo.html";
  }
  else window.setTimeout(cntdwn,1000);
  };
  window.onload=cntdwn;
 </script>
 </body>'
+7

Source: https://habr.com/ru/post/1719869/


All Articles