2023-11-08, 05:21:26
The examples you provided are very valuable, thank you very much for your support.
In the code mentioned below, what should I do to click on the 2nd or 3rd button instead of the first button?
{
let info, row, column, link
info = document.getElementById('information');
row = info.firstElementChild;
column = row.firstElementChild;
link = column.firstElementChild;
if (link) {
link.click();
}
}
If you have a link to more demos prepared for VFP, I would be happy if you could share it. Thanks again.
In the code mentioned below, what should I do to click on the 2nd or 3rd button instead of the first button?
{
let info, row, column, link
info = document.getElementById('information');
row = info.firstElementChild;
column = row.firstElementChild;
link = column.firstElementChild;
if (link) {
link.click();
}
}
If you have a link to more demos prepared for VFP, I would be happy if you could share it. Thanks again.