我尝试模拟点击以在我的网站上分享G +:
<!doctype html>
<html>
<head>
<title>Teste share G+</title>
</head>
<body onload="alert('hiii');document.getElementById('share_g').click();">
<a href="https://plus.google.com/share?url=http://www.example.com" id="share_g" onclick="javascript:window.open(this.href,
'', 'menubar=no,toolbar=no,resizable=yes,scrollbars=yes,height=600,width=600');document.querySelector('span.RveJvd snByac').click(); return false;"><img
src="https://www.gstatic.com/images/icons/gplus-64.png" alt="Share on Google+"/></a>
</body>
</html>
此时工作正常,但我需要点击POST
,是否可以使用javascript or pahntomjs
模拟此点击?