Skip to content
Advertisement

Maven can’t resolve the Kotlin Maven Plugin jar

Not sure how to fix this. I want this version of the Kotlin runtime and maven plugin. These are the bits in my pom.xml: And I added this as a repo: I get this error: Failure to find org.jetbrains.kotlin:kotlin-maven-plugin:jar:1.2-M2 in https://repo.maven.apache.org/maven2 was cached in the local repository, resolution will not be reattempted until the update interval of central has elapsed

Error creating a login using LDAP

I’m trying to create a page with spring to authenticate using ldap. I followed the official guide but trying to connect to my active directory instead of a test code. AppApplication.java HomeController.java WebSecurityConfig StackTrace I think the error is in the LDAP connection, but I think I have all the parameters fine. If you need more information please, tell me.

Unable to click a button in Selenium

I’m facing a tough time clicking a button from Selenium. Here’s the DOM: http://pasteboard.co/GHIjMd6.png I’ve declared the button WebElement this way using Xpath (a valid Xpath that returns one node as per Firepath): I’ve tried clicking the said button with send_this_msg_btn Xpath in below mentioned ways, but none of them work for me. WebDriver’s click() method : send_this_msg_btn.click() JavaScriptExecutor: Actions

Java Selenium get JSON response body

I using Java with Selenium webdriver and I wondering is it possible to get JSON body response? I asking because it is possible to get JSON request body using this code: but I can’t get body from response but response exist also in this log. Is any way to get response body? Answer Edit-2 Because of a open issue with

Advertisement