i am facing issue in clicking
my condition of clicking is i have a list of incidents but i only want to click on those incidents (one by one) which is 10 days old than today,
what to do
for example
bot is still clicking on the 1st one which is wrong so need help guys,
I assume you are redirecting to another page once you click on the row.
You can follow below steps
scrape entire data from web table and get the id\url to be visited
filter data table based on the date condition
loop through filtered data table
visit each link individually
Try to use following statement to get the ten days back date and time.
create a variable to hold the result and pass it as a selector in Click activity.
now another issue
robot is just reading dates which is -10 but what i need is what ever the dates are greater than 10 days robot should read that, any suggestions
First you do data scrapping and get all the date timestamp. Later you loop and put if condition to check if date is greater than 10(as per your requirement), if yes the then click by passing dynamic selector. Hope it will work!