# 以Python + Selenium为例 from selenium import webdriver from selenium.webdriver.common.by import By driver = webdriver.Chrome() driver.get("https://exam Read More
批处理文件: 执行的时候提示request找不到,此时是因为模块的路径不对,提示如下 ModuleNotFoundError: No module named 'request' 上面的报错是因为下面所示的request写的是相对路径,此时运行run时就会报错,只需要将其写为绝对路径就可以了 改正后 Read More
from selenium.webdriver.common.by import By import time # 设置 Appium 连接参数 caps = { "platformName": "Android", "platformVersion": "7.1.2", # 根据夜神模拟器的 An Read More