1

我正在尝试使用 Python 的 Selenium 绑定以编程方式与网站交互,作为 Django 网站的一部分。

由于我的 Selenium 代码作为 Django 网站的一部分运行,因此默认情况下(如果我理解正确的话)没有可供浏览器使用的显示。因此,我试图在我的 Selenium 代码运行之前使用 PyVirtualDisplay 启动 Xvfb。

这是我的代码:

from pyvirtualdisplay import Display
from selenium import webdriver

display = Display(visible=False, size=(800, 600))
display.start()

browser = webdriver.Firefox()

当我通过 SSH 连接到我的服务器时(运行 Debian Squeeze、Python 2.6.6、Selenium 2.25、PyVirtualDisplay 0.1.0),以我自己的身份运行 Python 控制台,然后输入上面的代码,它工作正常。

但是,当我尝试从我的 Django 站点运行该代码,或用于su运行 Python 控制台时www-data(我相信这是 Django 运行的用户),我收到以下错误:

selenium.common.exceptions.WebDriverException: Message: 'The browser appears to have exited before we could connect. The output was: 
(process:2963): Gtk-WARNING **: Locale not supported by C library.
    Using the fallback 'C' locale.
    Xlib:  extension "RANDR" missing on display ":1082.0".

    (firefox-bin:2963): libgnomevfs-WARNING **: Unable to create ~/.gnome2 directory: Permission denied
    Could not create per-user gnome configuration directory `/var/www/.gnome2/\': Permission denied'

我对 Xvfb 和 Linux 有点陌生,所以我不太确定我做错了什么。

4

1 回答 1

1

我相信这是一个简单的权限错误。

如您所见,在 ubuntu apache 的主目录上,/var/www 我认为您只需要确保 apache 对其主目录具有写访问权。我在 ubuntu 12.04 上的默认设置是

daniel@daniel:/var/www$ ls -la
total 12
drwxr-xr-x  2 root root 4096 Sep 15 11:43 .
drwxr-xr-x 14 root root 4096 Oct  2 08:54 ..
-rw-r--r--  1 root root  177 Sep 15 11:43 index.html

www-data没有对其自己的主目录的写访问权限!

也许您可以让 www-data 拥有该目录,或者创建一个具有写入权限的管理员组并将其添加www-data到其中?

关于授予对https://superuser.com/questions/19318/how-can-i-give-write-access-of-a-folder-to-all-users-in-linux写入权限的其他一些线程/var/www

于 2012-10-02T17:36:35.607 回答