wd = webdriver.Chrome('D:Program FilesPythonPython38chromedriver.exe')
wd.implicitly_wait(10)
wd.get('http...........................')
def run_js(js_path):#运行js文件,注意webdriver对象必须名叫wb
f = open(file = js_path , encoding ='utf-8')
js = f.read()
wd.execute_script(js)
f.close()
我写了个def,就是运行js 脚本的,里面这个webdriver对象叫 wb,
我想把这个 wd 改成当前 webdriver 对象,请问该怎么写呢?
因为有时候他不叫wb……
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…