Can't create object for image inside svg tag

I’m trying to create an object for drag and drop, but I’ve had no luck creating the object for the image nested inside of an svg tag.

Is Katalon able to find svg tags?

I am able to find over images on my web app, but not when it’s nested in a svg tag.

Please try xpath by something like “//[local-name() = ‘svg’]" for svg tag and then you can access svg inside element like "//[local-name() = ‘svg’]/*…”. Don’t trust on web spy since it won’t find anything about svg tag but the test can run with the xpath.

1 Like