Hi guys, I am trying to create this bot where I have to use Split and Contains methods that extracts sentences containing “UiPath” from a UiPath blog post. For some reason keeps giving me an error.
• START
• Use Open Browser activity to open URL “https://www.uipath.com/blog”
• Use Click Activity to open a blog post
• Use Get Text activity to store all text from a blog post of UiPath website in a string variable
called blogText.
• Use blogText.Split(“.”c) and store all sentences in an array called blogSentence
• Use For Each activity and iterate through each item in the array blogSentence
• Use If activity within For Each activity to identify sentence that contains the string “UiPath
in it. Use item.Contains(“UiPath”) as condition.
• Use Type Into activity to store result in a MS Word file
• STOP
Any idea what the problem can be?
Thanks