java: не найдено подходящего конструктора для RemoteWebDriver (java.net.URL, org.openqa.selenium.remote.DesiredCapabilities) constructor [duplicate]

Рекурсивная версия. Предполагается, что данные не содержат внутренних вкладок, так как основная функция возвращает строки продукта , которые разделены табуляцией. Основному подпункту необходимо передать диапазон, состоящий из данных вместе с верхней левой угловой ячейкой выходного диапазона. Вероятно, это может быть немного изменено, но подходит для целей тестирования.

ColumnProducts Range("A:C"), Range("E1")

Является вызовом, который решает проблему OP. Вот код:

'the following function takes a collection of arrays of strings
'and returns a variant array of tab-delimited strings which
'comprise the (tab-delimited) cartesian products of
'the arrays in the collection

Function CartesianProduct(ByVal Arrays As Collection) As Variant
    Dim i As Long, j As Long, k As Long, m As Long, n As Long
    Dim head As Variant
    Dim tail As Variant
    Dim product As Variant

    If Arrays.Count = 1 Then
        CartesianProduct = Arrays.Item(1)
        Exit Function
    Else
        head = Arrays.Item(1)
        Arrays.Remove 1
        tail = CartesianProduct(Arrays)
        m = UBound(head)
        n = UBound(tail)
        ReDim product(1 To m * n)
        k = 1
        For i = 1 To m
            For j = 1 To n
                product(k) = head(i) & vbTab & tail(j)
                k = k + 1
            Next j
        Next i
        CartesianProduct = product
    End If
End Function

Sub ColumnProducts(data As Range, output As Range)
    Dim Arrays As New Collection
    Dim strings As Variant, product As Variant
    Dim i As Long, j As Long, n As Long, numRows As Long
    Dim col As Range, cell As Range
    Dim outRange As Range

    numRows = Range("A:A").Rows.Count
    For Each col In data.Columns
        n = col.EntireColumn.Cells(numRows).End(xlUp).Row
        i = col.Cells(1).Row
        ReDim strings(1 To n - i + 1)
        For j = 1 To n - i + 1
            strings(j) = col.Cells(i + j - 1)
        Next j
        Arrays.Add strings
    Next col
    product = CartesianProduct(Arrays)
    n = UBound(product)
    Set outRange = Range(output, output.Offset(n - 1))
    outRange.Value = Application.WorksheetFunction.Transpose(product)
    outRange.TextToColumns Destination:=output, DataType:=xlDelimited, Tab:=True
End Sub
1
задан Wicelo 2 September 2014 в 08:09
поделиться

2 ответа

Я получил ошибку компиляции при попытке вашего кода The constructor RemoteWebDriver(String, DesiredCapabilities) is undefined

. Для Java вы можете попробовать что-то вроде этого,

  System.setProperty("webdriver.chrome.driver","Drive:"+File.separator+"chromedriver.exe");
  driver = new ChromeDriver();
  driver.get(url);
2
ответ дан Vignesh Paramasivam 24 August 2018 в 21:09
поделиться

Вы можете попробовать:

WebDriver driver = new RemoteWebDriver(new java.net.URL("http://localhost:4444/wd/hub"), DesiredCapabilities.chrome());
0
ответ дан Bubletan 24 August 2018 в 21:09
поделиться
Другие вопросы по тегам:

Похожие вопросы: