Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Ошибки при вызове методов один за другим #20

Open
nlobach opened this issue Aug 28, 2017 · 0 comments

Comments

@nlobach
Copy link

nlobach commented Aug 28, 2017

tableData().rows()
        .filter(row -> row.cell(1).getText().contains(product))
        .convert(row -> row.cell(8).getText().trim())
        .should(hasItem("Zuordnungen Serienausstattung"));

Кидает class cast exception так как методы фильтр и конверт выполняются в произвольной последовательности, хотя последовательность в данном случае важна.
Последовательность не соблюдается в классе WebBlockMethodHandler

for (TargetModifier<Object> modifier : getContext().getRegistry().getExtensions(TargetModifier.class)) {
    target = modifier.modify(getContext(), target);
}

когда из getExtensions может вернуться сначала convert, а потом filter. convert дает нам строки, а фильтр ожидает элемент row, что и приводит к ошибке. Хорошо бы соблюдать последовательность вызовов. Более того, два фильтра подряд в такой лоике тоже не получится вызвать, один другой затрет.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant