So im trying to build my first automation and stumbled upon this problem,
after several steps, the web will show popup item like this:
from this, i want to select the the row with value of “0 Package”, how can i achieve this?
ps
this table can be scrapped using data scraping options in UiPath
You can use dynamic selector for this purpose, just use click activity and click on 0 package options, It will return you a selector’s open UIExplorer where you can find Id or aaname element has a value with 0 package, You just have to replace the value with row(“Columnname”) .
Hello @Fauzan_Marantama, Can you please share the raw selectors? and also if there are identical row than you have to select selectors based on multiple criteria
Yes aaname and innertext contains the field from which you can dynamically click on the pop up. so check with both.
But you have to make correction on how you pass your variable ,change it to "
here variable can be anything like a value from excel sheet datatable => Row(“YourcolumnName”)
Hello Akshay07, after using innertext & variable, it can select the “0 Package”.
But there is another problem, how I can save the value on the left side of the “0 Package”, ie. picker-1 & will know if there is no idle picker (no one has 0 package) and show warning?