Skip to content

Commit

Permalink
fixes neo4j-contrib#1372: apoc.load.html ability to read runtime stru…
Browse files Browse the repository at this point in the history
…cture of the page
  • Loading branch information
vga91 committed Apr 26, 2021
1 parent aa60f27 commit d0e38c2
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 7 deletions.
10 changes: 5 additions & 5 deletions full/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -68,11 +68,11 @@ dependencies {

compile 'org.jsoup:jsoup:1.11.3'

compileOnly group: 'org.seleniumhq.selenium', name: 'selenium-java', version: '3.141.59'
testCompile group: 'org.seleniumhq.selenium', name: 'selenium-java', version: '3.141.59'
compileOnly group: 'io.github.bonigarcia', name: 'webdrivermanager', version: '3.1.1'
testCompile group: 'io.github.bonigarcia', name: 'webdrivermanager', version: '3.1.1'

compile group: 'org.seleniumhq.selenium', name: 'selenium-java', version: '3.141.59'
compile group: 'io.github.bonigarcia', name: 'webdrivermanager', version: '3.1.1'
compile group: 'org.seleniumhq.selenium', name: 'selenium-firefox-driver', version: '3.141.59'
compile group: 'org.seleniumhq.selenium', name: 'selenium-chrome-driver', version: '3.141.59'
compile group: 'org.roaringbitmap', name: 'RoaringBitmap', version: '0.7.17'
compile(group: 'org.apache.commons', name: 'commons-configuration2', version: '2.7') {
exclude group: "org.yaml"
Expand Down
1 change: 0 additions & 1 deletion full/src/test/java/apoc/load/LoadHtmlTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@
import static org.junit.Assert.assertTrue;
import static org.junit.Assert.fail;


public class LoadHtmlTest {

protected static final String RESULT_QUERY_METADATA = ("{attributes={charset=UTF-8}, tagName=meta}, " +
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@

@RunWith(Parameterized.class)
public class LoadHtmlTestParameterized {
// Tests from LoadHtmlTest.java.
// Tests taken from LoadHtmlTest.java.
// To check that `withBrowser` configuration preserve the result.

@Rule
Expand Down

0 comments on commit d0e38c2

Please sign in to comment.