Hello, the add-on is excellent. Since version 14.8, when displaying a graph

Hello, the add-on is excellent.
Since version 14.8, when displaying a graph, the following error is thrown:

java.lang.NoSuchMethodError: 'org.jsoup.nodes.Element org.jsoup.nodes.Element.traverse(org.jsoup.select.NodeVisitor)'
at com.vaadin.flow.component.polymertemplate.TemplateDataAnalyzer.inspectTwoWayBindings(TemplateDataAnalyzer.java:244) ~[flow-server-2.7.9.jar:2.7.9]

TemplateDataAnalyzer.java:244
at com.vaadin.flow.component.polymertemplate.TemplateDataAnalyzer.parseTemplate(TemplateDataAnalyzer.java:233) ~[flow-server-2.7.9.jar:2.7.9]

TemplateDataAnalyzer.java:233
at com.vaadin.flow.component.polymertemplate.TemplateInitializer.lambda$null$23ee5b4f$1(TemplateInitializer.java:91) ~[flow-server-2.7.9.jar:2.7.9]

TemplateInitializer.java:91
at com.vaadin.flow.internal.ReflectionCache.lambda$wrapValueProvider$d0062d93$1(ReflectionCache.java:93) ~[flow-server-2.7.9.jar:2.7.9]

ReflectionCache.java:93
at java.base/java.util.concurrent.ConcurrentHashMap.computeIfAbsent(ConcurrentHashMap.java:1705) ~[na:na]

ConcurrentHashMap.java:1705
at com.vaadin.flow.internal.ReflectionCache.get(ReflectionCache.java:110) ~[flow-server-2.7.9.jar:2.7.9]

ReflectionCache.java:110
at com.vaadin.flow.component.polymertemplate.TemplateInitializer.<init>(TemplateInitializer.java:92) ~[flow-server-2.7.9.jar:2.7.9]

TemplateInitializer.java:92
at com.vaadin.flow.component.polymertemplate.PolymerTemplate.<init>(PolymerTemplate.java:91) ~[flow-server-2.7.9.jar:2.7.9]

PolymerTemplate.java:91
at com.vaadin.flow.component.polymertemplate.PolymerTemplate.<init>(PolymerTemplate.java:106) ~[flow-server-2.7.9.jar:2.7.9]

PolymerTemplate.java:106
at com.github.appreciated.apexcharts.ApexCharts.<init>(ApexCharts.java:28) ~[apexcharts-2.0.0-beta13.jar:2.0.0-beta13]

ApexCharts.java:28

Federico Imhoff:
Hello, the add-on is excellent. Since version 14.8, when displaying a graph, the following error is thrown:

Hello, we got the same error, we also upgraded to version 14.8

I had the same Problem. For me it was caused by an older Version of jsoup.
You can check what Version you have and what dependency uses it with: mvn dependency:tree

You need jsoup version 1.14.3 (or higher)

For me it was

<dependency>
	<groupId>io.github.bonigarcia</groupId>
	<artifactId>webdrivermanager</artifactId>
	<version>3.8.1</version>
	<scope>test</scope>
</dependency>

and by changing it to the newest Verion, jsoup also got to the newest version (1.14.3)

<dependency>
	<groupId>io.github.bonigarcia</groupId>
	<artifactId>webdrivermanager</artifactId>
	<version>5.1.0</version>
	<scope>test</scope>
</dependency>

Hello Marcus,

this solved my problem. You made my day!
Thanks

It works thank you!

It has worked thank you !