0

对于我们的 BDD 测试,我们使用与 selenium 2 webdriver(本例中的 Chrome 驱动程序)对话的 Specflow。

在本地主机上运行时(是的,“它在我的机器上工作”已经在对话中出现了几次)测试工作正常。他们设置数据和新的 webdriver,进行测试,然后拆除 webdriver 和数据。即使由于我使用了正确的属性而导致测试出现严重错误,拆解总是会被击中,因此driver.Quit()会破坏浏览器和驱动程序。

当我使用我们的持续集成 [TeamCity] 在我们的服务器 [Windows Server 2008 r2] 上运行它时,就会出现问题。由于某种原因,它将开始运行多个驱动程序实例,从而导致测试失败。

有没有人遇到过这个问题并找到了解决方法?我们需要一个使用 HtmlUnitDriver.

额外的信息:

  • 语言 = C#
  • 服务器 = Windows Server 2008 R2
  • CI = 团队城市

编辑:通过确保尚未创建 Webdriver 来设置 Webdriver,然后创建ChromeDriver. 下面的伪/真实代码示例显示了它的设置方式,抱歉,我无法显示完整的代码,因为它有很多绒毛,我们用于我们坚持使用的其他选项(例如 zap 或 fiddler 集成/语言更改等)。

设置

[SetUp]
[BeforeScenario()]
public static void BeforeWebScenario()
{
   if driver == null
     driver = new ChromeDriver();
   // Code to start page
}

拆除

[TearDown]
[AfterScenario()]
public static void AfterWebScenario()
{
   try
   {
       driver.Quit();
   } catch (Exception)
   {
       throw Exception
   }
   driver = null;
}
4

2 回答 2

1

我也有这个问题。我通过在我的 testSetup() 方法中杀死任何正在运行的 chromedriver.exe 实例来修复它。我使用了一个 VBScript 和一些 Groovy 代码来运行这些脚本。对不起,这个答案有点长。

我的设置中有这个):

if (wshsc.isRunningByCommandLineContents("chromedriver.exe"))
    wshsc.killProcessByCommandLineContents("chromedriver.exe")

isRunningByCommandLine 内容:

If WScript.Arguments.Count = 1 Then

strCmdLine = WScript.Arguments.Item(0)
On Error Resume Next
strComputer = "."
Set objWMIService = GetObject("winmgmts:" _
    & "{impersonationLevel=impersonate}!\\" & strComputer & "\root\cimv2")
Set objShell = CreateObject("WScript.Shell")
Set colProcessList = objWMIService.ExecQuery _
    ("Select * from Win32_Process")
If colProcessList.Count > 0 Then
    For Each objItem in colProcessList
        If (InStr(objItem.CommandLine, strCmdLine)) Then
            If (InStr(objItem.CommandLine, "cscript")) Then
            Else
                WScript.StdOut.Write "A process is running with " + strCmdLine + " in its command line = " + objItem.Name
            End If  
        End If
    Next
End If
End If

killProcessByCommandLine 内容:

If WScript.Arguments.Count = 1 Then
strProcess = WScript.Arguments.Item(0)
On Error Resume Next
strComputer = "."
Set objWMIService = GetObject("winmgmts:" _
    & "{impersonationLevel=impersonate}!\\" & strComputer & "\root\cimv2")
Set objShell = CreateObject("WScript.Shell")
Set colProcessList = objWMIService.ExecQuery _
    ("Select * from Win32_Process")

If colProcessList.Count > 0 Then
    For Each objItem in colProcessList
        If InStr(objItem.CommandLine, strProcess) Then
            If (InStr(objItem.CommandLine, "cscript")) Then
            Else
                WScript.StdOut.Write objItem.Name + " "
                objItem.Terminate()
            End If
        End If
    Next
Else
    WScript.StdOut.Write "No instances found running"
End If
Else
WScript.StdOut.Write "Bad Arguments"
End If

而“运行脚本部分”:

public void killProcessByCommandLineContents(String contents) {
    List<String> arg = new ArrayList<String>()
    arg.add(contents)
    String [] args = arg.toArray()
    runScript("killByCmdLineContents.vbs", args, true)
}
public boolean isRunningByCommandLineContents(String contents) {
    List<String> arg = new ArrayList<String>()
    arg.add(contents)
    String [] args = arg.toArray()
    String returnData = runScript("IsRunningByCmdLineContents.vbs", args, true)
    if (returnData.contains(contents)) {
        return true
    } else {
        return false 
    }
}
public String runScript(String name, String [] args, boolean returnOutput) {
    String s = null;
    List<String> cmdLine = new ArrayList<String>()
    cmdLine.add("C://Windows//System32//cscript.exe")
    cmdLine.add(dir + "dir//src//com//misc//wshScripts//" + name)
    int index = 0
    args.each() {
        cmdLine.add(args[index])
        index++
    }

    try {
        String [] cmdLineArray = cmdLine.toArray()
        Process p = Runtime.getRuntime().exec(cmdLineArray, null);
        if (returnOutput) {
            BufferedReader stdInput = new BufferedReader(new InputStreamReader(p.getInputStream()));
            BufferedReader stdError = new BufferedReader(new InputStreamReader(p.getErrorStream()));
            String dataToReturn
            Log.logger.info("Standard output: ");
            while ((s = stdInput.readLine()) != null) {
                Log.logger.info(s)
                dataToReturn = s // should get last line
            }

            Log.logger.info("Standard error: ");
            while ((s = stdError.readLine()) != null) {Log.logger.info(s);}
            return dataToReturn
        } else {
            return ""
        }
    }
    catch (IOException e) {
        Log.logger.info(e.message, e);
    }
}
于 2012-06-06T14:59:30.390 回答
0

如果您使用 DriverService 接口,请保持服务直到您完成驱动程序,然后调用 DriverService.stop()。对我来说, driver.quit() 还不够,因为我也在使用 DriverService。

driver.close();
driver.quit();
driverService.stop();
于 2016-07-12T16:21:54.257 回答