系统相关
首页 > 系统相关> > Linux中的selenium自动化测试问题:firefox无法自动关闭

Linux中的selenium自动化测试问题:firefox无法自动关闭

作者:互联网

我正在通过selenium(selenium RC)在Linux中运行Web GUI的自动化测试.事实上,我可以在windows中运行selenium自动化测试,结果很好,firefox可以在测试完成后自动关闭.但是当我在linux中进行selenium测试时,我发现测试完成后firefox无法自动关闭.我知道测试脚本默认会调用tearDown函数,所以应该关闭firefox.但是为什么在Linux中,firefox无法自动关闭?

要解决这个问题:
我重写了tearDown函数,如下所示:

public void tearDown() throws Exception
    {
        selenium.click("link=Logout");
        super.tearDown();
    }

但是在Linux中,firefox仍然无法关闭.
任何人都可以帮我解决这个问题吗?测试完成后如何让firefox自行关闭?
P.S:到目前为止,我还没有找到关闭firefox的方法,顺便说一下,我使用参数-firefoxProfileTemplate来启动selenium-server.jar,因为我的web GUI是https.

解决方法:

问题解决了:那是因为我的firefox.
这是因为Selenium想要直接启动FireFox二进制文件,而不是委托给正常的启动脚本.在检查“firefox”(这是许多安装的脚本)之前,它会检查“firefox-bin”.
但是我将firefox设置为firefox而不是firefox-bin.
更多细节可以在以下网址找到:
Selenium not working with Firefox 3.x on linux

标签:linux,firefox,selenium,selenium-rc,solaris
来源: https://codeday.me/bug/20190626/1298043.html