我的问题真的很简单,但我还没有找到它。
我的服务器上运行了一个 python 脚本。此脚本读取 NFC 卡。(pyscard) 每当有卡片时,cardID 必须发送到网页。我的本地主机上有 index.html 文件。
<head>
<title>Hello!</title>
</head>
<script language="JavaScript" type="text/javascript">
function card(Cardid){
alert(Cardid);
}
</script>
<body>
</body>
</html>
有一种方法可以通过 selenium (driver.execute_script(command) ) Selenium 很重。有没有其他简单而轻松的方法来做到这一点?