How do I click on the a href in the image

1111

How do I click on that link? The link is dynamic, it’s numbers change all the time.

:slight_smile:

Love love love this tool

storeattribute or sourceExtract with regexp and then open?

The best solution seems to be to use computer vision. There are two option:

  • xclick | image of text to click
  • xclick | ocr=flag <= this uses OCR to find the text in the image and click it. “flag” is part of the images/flag.png text in the image above, which I assume is the place you want to click.

sry, the image in the screenshot is just to show the back end code.

My aim is to click on the link that, that backend code creates.

So I would like to click on link on a page that has a number e.g. 12460982559 << and those numbers are basically a link.

But the numbers change, all the time so, my question is how can click on that link every time using Kantu?

Thanks in advance,

In this case I see two options:

image1

Thank you, I am trying this but no luck as of yet

It’s timing out, I am trying to use class not id

my code is:

//*[contains(@class,“tgwt-CaseTableCell-Active”)]/td/a

Capture

Maybe this is inside a frame or iframe?

I found this

" <iframe src=“javascript:’’” id="_"

Ok, then you need to add a select Frame | index=1 (or 0 or 2… you will need to test this). Selenium locators always search only in the active frame, and with selectFrame you can switch the active frame.

Or try xclick (image), the visual commands don’t care about frames :wink: