Uipath Academy - System 1 LV Advanced

Hi guys!
I need help in the first lesson of the advanced level (System 1)
I’m still at the beginning (extracting data from the table in WorkItem).
the error is that after executing the login in the CME nothing happens, sometimes it does the direct logout… There are two days I’m looking for the error and I can not find it. follows the project. Can someone tell me the way?ReFrameWork-master.zip (1.9 MB)

to better exemplify:

1 Like

You have not used attach browser activity for you click action
Add a AttachBrowser then indicate the WorkItems page and inside that add the click action that you have and re-indicate it.
This should solve the fault that is occurring. :slight_smile:

2 Likes

Hi @nadim.warsi

Once again thank you very much for the help, I will follow your tip. Just one more question. In the activity manual you are informed to use the full selector of WorkItem (that this activity is not within a browser scope to attach). Do you think you may have a problem later?

1 Like

Yes that is there :slight_smile:
Can you use the below selector?

<html app='chrome.exe' title='ACME System 1 - Dashboard' />
<webctrl aaname=' *Work Items' parentid='dashmenu' tag='BUTTON' />

Actually your selector is taking a DIV instead of a Button

3 Likes

:grinning::grinning::grinning: yes

thanks. you’re right, I really had not noticed that my selector was like this:

html app=‘chrome.exe’ title=‘ACME System 1 - Dashboard’ /
webctrl aaname=’ Work Items ’ parentid=‘dashmenu’ tag=‘DIV’

and now it worked.

1 Like

Great :wink:

You would also use Attach Browser (pass the Browser element from the Open browser activity used previously) and use Navigate. This saves much time and using many click activities.

1 Like