Hi,
I have following scenario:
1. Open Mail
2. Copy URL from mail (Link is disabled in mail so can't click to open)
3. Paste in in new browser and work
I am able to extract the url but passing it new browser is sometime failing due to characters like %3d. I am using following code:
1. Extracted variable : StagingLink
2. Link=GetExtractedValue("StagingLink");
3. Manager.LaunchNewBrowser(BrowserType.InternetExplorer, true);
Browser ie = Manager.ActiveBrowser;
ie.NavigateTo((string)ViewMail.Link,true);
Here part of URL where "%3d" is present is changed to "=" during string conversion so not working. Please help
I have following scenario:
1. Open Mail
2. Copy URL from mail (Link is disabled in mail so can't click to open)
3. Paste in in new browser and work
I am able to extract the url but passing it new browser is sometime failing due to characters like %3d. I am using following code:
1. Extracted variable : StagingLink
2. Link=GetExtractedValue("StagingLink");
3. Manager.LaunchNewBrowser(BrowserType.InternetExplorer, true);
Browser ie = Manager.ActiveBrowser;
ie.NavigateTo((string)ViewMail.Link,true);
Here part of URL where "%3d" is present is changed to "=" during string conversion so not working. Please help