导入定义的硒功能浏览器问题

时间:2018-11-08 10:58:33

标签: python function selenium python-import

设置

我将硒用于多种用途,发现自己一次又一次地定义相同的功能。

我决定在一个单独的文件中定义这些功能,并将其导入到我的工作文件中。


简单示例

如果我定义函数并在一个文件中全部执行,则一切正常。参见下面的简单 full_script.py

# import webdriver
from selenium import webdriver

# create browser
browser = webdriver.Firefox(
        executable_path='/mypath/geckodriver')

# define short xpath function
def el_xp(x):
    return browser.find_element_by_xpath(x)      

# navigate to url
browser.get('https://nos.nl')

# obtain title first article
el_xp('/html/body/main/section[1]/div/ul/li[1]/a/div[2]/h3').text

这将成功返回此新闻网站上第一篇文章的标题。


问题

现在,当我将脚本拆分为 xpath_function.py run_text.py 并将其保存在桌面上的test文件夹中时,事情不正常。

xpath_function.py

# import webdriver
from selenium import webdriver

# create browser
browser = webdriver.Firefox(
        executable_path='/mypath/geckodriver')

# define short xpath function
def el_xp(x):
    return browser.find_element_by_xpath(x)  

run_test.py

import os
os.chdir('/my/Desktop/test')
import xpath_function as xf

# import webdriver
from selenium import webdriver

# create browser
browser = webdriver.Firefox(
        executable_path='/Users/lucaspanjaard/Documents/RentIndicator/geckodriver')

browser.get('https://nos.nl')

xf.el_xp('/html/body/main/section[1]/div/ul/li[1]/a/div[2]/h3').text

执行run_test.py会打开2个浏览器,其中一个浏览到新闻网站,并显示以下错误,

NoSuchElementException: Unable to locate element: 
/html/body/main/section[1]/div/ul/li[1]/a/div[2]/h3

我想问题是在xpath_function.pyrun_test.py中我都定义了browser

但是,如果我没有在xpath_function.py中定义浏览器,则会在该文件中得到一个错误,即未定义浏览器。

我该如何解决?

1 个答案:

答案 0 :(得分:1)

您可以通过更改el_exp的定义来轻松修复它,以将浏览器作为附加参数包括进来:

def el_xp(browser, x):
    return browser.find_element_by_xpath(x)

现在在run_test.py中,您可以这样称呼它:

xf.el_xp(browser, '/html/body/main/section[1]/div/ul/li[1]/a/div[2]/h3').text