Ask a Question

TC12, Outlook16 - select folder does not work

SOLVED
angelhearted
New Contributor

TC12, Outlook16 - select folder does not work

Hello

Need to set current selected folder in Outlook 16 (and 13).

The folder is a subfolder of Inbox.

With TC11 I could do it the following way (JScript😞

 

var folder = 'TestFolder';
var folderObj = outlook.GetNamespace('MAPI').Folders(EMAIL).Folders(INBOX_FOLDER).Folders(folder); outlook.ActiveExplorer.CurrentFolder = folderObj;

In TC12 it doesn't work.

 

What I tried is (JavaScript😞

 

  const folderObj = outlook.GetNamespace('MAPI').DefaultStore.GetRootFolder().Folders.Item(EMAIL).Folders.Item(folder);
  const ex = outlook.ActiveExplorer();
  ex.CurrentFolder = folderObj;

 

Variables valuse after first 2 lines, before the third:

vars_dump_tc12_problem.png

After executing the third line an error occures:

 

JavaScript runtime error.
The operation failed.

Reproduces on both Outlook 16 and 13.
win10 x64, Office 32-bit
Please help in resolving the matter.

 

---
Nikita
3 REPLIES 3
Marsha_R
Community Hero

I suggest you contact Support directly about this issue.  Here's the link:

https://support.smartbear.com/testcomplete/


Marsha_R
[Community Hero]
____
[Community Heroes] are not employed by SmartBear Software but
are just volunteers who have some experience with the tools by SmartBear Software
and a desire to help others. Posts made by [Community Heroes]
may differ from the official policies of SmartBear Software and should be treated
as the own private opinion of their authors and under no circumstances as an
official answer from SmartBear Software.
The [Community Hero] signature is used with permission by SmartBear Software.
https://community.smartbear.com/t5/custom/page/page-id/hall-of-fame
angelhearted
New Contributor

Contacted the support 4 days ago, waiting for the response.

Will write the answer below if any.

---
Nikita
angelhearted
New Contributor

We've figured out ourselves how to implement that in TC12.

 

 
outlook.GetNamespace('MAPI').DefaultStore.GetRootFolder().Folders.Item(folder);
outlook.Application.ActiveExplorer().SelectFolder(folder);
const currentView = outlook.Application.ActiveExplorer().CurrentFolder.CurrentView;
currentView.Reset();
currentView.Apply();

Hope it will save time for somebody.

 
---
Nikita
cancel
Showing results for 
Search instead for 
Did you mean: