admin管理员组文章数量:1395436
I am creating a flow in Microsoft Power Automate Desktop that retrieves the weather information for a user-specified city. The flow prompts the user to enter a city, then opens Google Search to get the maximum temperature for that city. However, I encounter an error when trying to set a variable using the Text() function.
The error message is:
The untyped object argument to the 'Text' function has an incorrect type. Expected: Text, Actual: Text.
Location: Subflow: Main, Line: 6, Action name: Set variable
This error occurs at the Set Variable step, where I attempt to convert the extracted value into text using:
Text(${Temperatuur})
I first attempted to use:
Text(${Temperatuur})
expecting it to properly convert the extracted web data to text. Instead, I got the type error mentioned above.
I also tried simply assigning the variable directly without
Text()
:=Temperatuur
but I still received the same error.
I verified that the Extract data from web page step successfully retrieves the weather data. However, it seems that the extracted value might not be automatically recognized as text.
How can I properly extract and assign the temperature value as text to avoid this error?
本文标签:
版权声明:本文标题:web scraping - Power Automate Desktop: "The untyped object argument to the 'Text' function has an incor 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1744085266a2588399.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论