Level3 Assignment 1 ExtractWIDetails Error

Hi Everyone,

Please help me out to solve the Level3 assignment issue.

Let me explain my problem

I am stuck at Extracting the WI Details.form last two days i am trying to solve this issue please any one help me out on this issu

While i am running the application in debug mode i am getting url adding extra space (%20)
https://acme-test.uipath.com/%20work-items/422995
how to clear this space i am giving “System1\System1_NavigateTo_WIDetails\Main.xaml”

this is at process page i am invoaking widetails page.

url

Thanks in advance,
Jayaprakash Gurrapu

1 Like

@gurrapujp

Try this.

  System1_URL.Tostring+"/work-items/"+WorkItem_ID.Tostring
1 Like

Hi laskshman,

Thanks for replying

I have implemented but the same issue its adding ‘%20’
https://acme-test.uipath.com/%20/work-items/895465

1 Like

Hi @gurrapujp

Can you please share the vakue you have entered in config for URL.

Also please try it with IE.

Thanks,
Shenki

2 Likes

Hi ShenkiSinghai,

thanks for reply

i am attaching screenshot of the config file pfa

1 Like

Hi lakshman,

when i implementing above said one i am getting

https://acme-test.uipath.com/%20/work-items/441485

1 Like

@gurrapujp

Before that Navigate to Activity, could you please print the below value and tell me what’s its printing exactly. So that i can check and help you.

          in_Config("System1URL").Tostring
1 Like

Hi lakshman,

I have fixed this one by removing extra spaces from url
System1_URL.Replace(" ",string.Empty)+ “work-items/” + WorkItem_ID.Tostring

Thank you for guidance lakshman

1 Like

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.