How can I unselect all the rows in a table? I have tried many things with the Set-Element but could not figure this out or find it in the documentation.
Product: PowerShell Universal
Version: 1.4.6
How can I unselect all the rows in a table? I have tried many things with the Set-Element but could not figure this out or find it in the documentation.
Product: PowerShell Universal
Version: 1.4.6
Here’s a bit of a hack but seems to work.
Invoke-UDJavaScript -JavaScript "document.querySelector('span[title=`"Toggle All Rows Selected`"]').childNodes[0].click()"
How would you do that when -DisableMultiSelect is being used?