SeleniumBasic VBA Fastest Loop of WebElements using a WebElement method
问题 I'm noticing a rather long time for an operation to complete. I'm using the latest SeleniumBasic for VBA to extract data from a table using a ChromeDriver. (https://github.com/florentbr/SeleniumBasic) I'm retrieving WebElements and looping through them to get the text value. I'm assigning the text value to an array of type String. This operation takes quite a long time when I have a large array (1000's of WebElement objects). Question - What is the fastest way to get all the text values? Here