2021/5/27

m1 mac chrome 带参数启动 mac selenium连接已启动浏览器

#编辑文件 vi ~/.zshrc #添加下面内容 export PATH="/Applications/Google Chrome.app/Contents/MacOS:$PATH" #命令行运行下面命令 Google\ Chrome --remote-debugging-port=9222 --user-data-dir=&…

  • macos python selenium
  • 2021/5/27
  • helei
  • 1,121
  • 2021/5/26

    python 监听键盘事件

    pynput from pynput.keyboard import Key,Listener def press(key):     print(key)     if key ==Key.space:         do something with Listener(on_press = press) as …

  • python
  • 2021/5/26
  • helei
  • 835
  • 2021/5/26

    python selenium 执行js

    driver.execute_script("your js")

  • selenium
  • 2021/5/26
  • helei
  • 791
  • 2021/5/24

    php获取post参数

    一、PHP获取POST数据的几种方法 方法1、最常见的方法是:$_POST['fieldname']; 说明:只能接收Content-Type: application/x-www-form-urlencoded提交的数据解释:也就是表单POST过来的数据 方法2、file_get…

  • php
  • 2021/5/24
  • helei
  • 792
  • 2021/5/24

    php 获取微信推送的xml

    1 //接收POST数据 2 $input = file_get_contents("php://input"); 3 //提取POST数据为simplexml对象 4 $xml = simplexml_load_string($input); 5 var_…

  • php 微信公众号开发
  • 2021/5/24
  • helei
  • 799
  • 2021/5/21

    nginx 配置80转发443

    rewrite ^ https://$http_host$request_uri? permanent;

  • nginx
  • 2021/5/21
  • helei
  • 785
  • 2021/5/21

    nginx php 配置域名80 443

    server     {         listen 80;         #listen [::]:80;     &nbs…

  • nginx php
  • 2021/5/21
  • helei
  • 1,314