:wave: Hello! I am trying to use Skrape for unit ...
# skrape-it
j
👋 Hello! I am trying to use Skrape for unit testing a website we are building, but I’m running into a lot of trouble immediately. I have including the dependencies like this:
Copy code
testImplementation("it.skrape:skrapeit-core:1.0.0-alpha6")
testImplementation("it.skrape:skrapeit-ktor:1.0.0")
But if I try to use the Ktor extension, I get the following error:
Cannot access class ‘org.jsoup.nodes.Document’. Check your module classpath for missing or conflicting dependencies
If I just try to use the Skrape core directly, I get this:
Unresolved reference: strikt
Everything looks fine in the IDE and it resolves things automatically, but unfortunately I cannot build. Have I missed something?
c