Python selenium库 对象怎么指向当前的webdriver对象呢?

Python selenium库 对象怎么指向当前的webdriver对象呢?

wd = webdriver.Chrome('D:\Program Files\Python\Python38\chromedriver.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……


回答:

将wb作为参数传到run_js里

以上是 Python selenium库 对象怎么指向当前的webdriver对象呢? 的全部内容, 来源链接: utcz.com/a/158827.html

回到顶部