Selenium headless不能在带有Perl的CentOS 7上运行,"没有指定显示器"

时间:2016-01-21 15:42:58

标签: perl selenium centos headless

我尝试在CentOS7上运行无头Selenium:

# cat /etc/os-release 
NAME="Red Hat Enterprise Linux Server"
VERSION="7.2 (Maipo)"

我安装了Xvfb并将其作为

运行
# /usr/bin/Xvfb :99

我安装了firefox:

# firefox -v
Mozilla Firefox 38.5.0

并运行它以检查它是否可以运行:

# export DISPLAY=:99
# firefox

这是输出:

# firefox
Xlib:  extension "RANDR" missing on display ":99".
console.error: 
  [CustomizableUI]
  Custom widget with id loop-button does not return a valid node
console.error: 
  [CustomizableUI]
  Custom widget with id loop-button does not return a valid node
GLib-GIO-Message: Using the 'memory' GSettings backend.  Your settings will not be saved or shared with other applications.

Firefox似乎在该命令之后运行:

# ps aux | grep firefox
root     29476  7.3 14.9 852356 152256 pts/3   Sl+  10:30   0:03 /usr/lib64/firefox/firefox

修改 是的,它正在运行。从Xvfb截取屏幕截图

DISPLAY=:99 import -window root -crop 1264x948+0+0  /tmp/screenshot.jpg

我可以看到 enter image description here

现在有问题的部分。

我为Perl安装了Selenium Remote Driver

# cpanm Selenium::Remote::Driver

然后我跑了独立的selenium驱动程序:

# java -jar selenium-server-standalone-2.49.0.jar 

现在我运行测试脚本:

#!/usr/bin/perl
use strict;
use warnings;
use Selenium::Remote::Driver;
my $driver = Selenium::Remote::Driver->new(browser_name=>'firefox');
$driver->get('http://www.google.com');
print $driver->get_title();
$driver->quit();

45秒后,我从驱动程序中得到错误:

Could not create new session: Unable to connect to host 127.0.0.1 on port 7055 after 45000 ms. Firefox console output:
Error: no display specified
 at (eval 89) line 510.
似乎像驱动程序启动的firefox没有看到DISPLAY环境变量。我尝试从脚本中添加它:

#!/usr/bin/perl
use strict;
use warnings;
use Selenium::Remote::Driver;
$ENV{DISPLAY}=":99";
my $driver = Selenium::Remote::Driver->new(browser_name=>'firefox');
$driver->get('http://www.google.com');
print $driver->get_title();
$driver->quit();

没有帮助,之前的错误仍然存​​在。 我该怎么办?

EDIT2

我用Python尝试了当前的设置。一切正常。

# pip install selenium

使用以下测试脚本:

from selenium import webdriver
from selenium.webdriver.common.keys import Keys

driver = webdriver.Firefox()
driver.get("http://www.python.org")
f = open('ptn-sel.txt', 'w')
f.write(driver.title)
driver.close()
f.close()

我理解Perl驱动程序的问题......有什么建议吗?

1 个答案:

答案 0 :(得分:2)

python是使用独立服务器还是运行firefox本身?

如果perl正在使用服务器并且服务器正在生成firefox,那么您需要在服务器进程环境中设置$DISPLAY而不是脚本的环境。 (通过运行export DISPLAY=:99; java -jar selenium-server-standalone-2.49.0.jar或类似的。)

如果您根本不想使用独立服务器,那么Selenium::Firefox看起来可能很有趣。