Forum Discussion
Mekist
Helper III
6 months agoRetrieving data via HTML
Hello I am retrieving company information as a table using the following query. Since the data is retrieved from the table, a timeout issue occurs on the website. Is it possible to retrieve the data...
- 6 months ago
v-saisrao-msft
Community Support
6 months agoHi Mekist ,
The timeout probably happens because the table loads dynamically, so Web.BrowserContents may capture the HTML before everything is fully rendered. To make it more stable, try using the WaitFor option to delay extraction until the table is visible, and increase the command timeout for more loading time. If you can access the data as static HTML or through an API, using Web.Contents would be faster and more reliable.
Troubleshooting the Power Query Web connector - Power Query | Microsoft Learn
Power Query Web connector - Power Query | Microsoft Learn
Web.BrowserContents - PowerQuery M | Microsoft Learn
Thank you.