While working on Issue #87, I noticed two goofy things:
The GameIT class is using a transitive dependency of Selenium for JSON parsing.
Since I was playing around with Selenium versions, I also noticed that more recent releases swap out this library for a different one, breaking my code.
The POM declares a dependency on one JSON processing library "for use in tests", but I'm not actually using that library anywhere.
Since I already have a dependency on Jackson, I might as well switch the GameIT code to that and get rid of the extra POM dependency.
While working on Issue #87, I noticed two goofy things:
GameIT
class is using a transitive dependency of Selenium for JSON parsing.Since I already have a dependency on Jackson, I might as well switch the
GameIT
code to that and get rid of the extra POM dependency.