If you want the raw data from https://coronavirus.jhu.edu/testing/individual-states, right click, inspect element, go to the console tab, paste this javascript into the box on the left and look at the console on the right. It should print the dates, +ve tests and -ve tests in that order. (works in firefox)
k=document.getElementsByTagName(“iframe”)[0]; k=k.contentWindow.document; k=k.getElementById(“a95f7321-ea35-4a39-8070-64483119f90d”); k=k.parentNode.children[1]; k=k.innerText; function m(s,ss){ a=[]; b=0; c=0; while (c!=-1){ c=s.search(ss); b+=c+1 a.push(b); s=s.substr(c+1,s.length); } a.pop(); return a;
If you want the raw data from https://coronavirus.jhu.edu/testing/individual-states, right click, inspect element, go to the console tab, paste this javascript into the box on the left and look at the console on the right. It should print the dates, +ve tests and -ve tests in that order. (works in firefox)