You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
First
Crawler.java line 478. Filter is incorrect HarResponse harResponse = proxyServer.getHar().getLog().getEntries().stream() .filter(harEntry -> candidateUrl.equals(harEntry.getRequest().getUrl())) .findFirst() .orElseThrow(() -> new IllegalStateException("No HAR entry for request URL")) .getResponse();
candidateUrl always with final /
harEntry.getRequest().getUrl() always without final /
Second
Violation of SOLID principles does not allow fixing such issue easily
The text was updated successfully, but these errors were encountered:
Version 2.1.1
OS Win
Webriver chromium
First
Crawler.java line 478. Filter is incorrect
HarResponse harResponse = proxyServer.getHar().getLog().getEntries().stream() .filter(harEntry -> candidateUrl.equals(harEntry.getRequest().getUrl())) .findFirst() .orElseThrow(() -> new IllegalStateException("No HAR entry for request URL")) .getResponse();
candidateUrl always with final /
harEntry.getRequest().getUrl() always without final /
Second
Violation of SOLID principles does not allow fixing such issue easily
The text was updated successfully, but these errors were encountered: