Open your application in Chrome. In our example it is Dynamics 365 for Operations (ERP system from Microsoft). Let's debug how Rapise records clicks on the tab control headers.
![](/Support/Attachment/63422.aspx)
Here is the part of the source code we want to debug. Write
debugger;
statement at a place were you want to break execution and start debugging.
![](/Support/Attachment/63423.aspx)
Download and install VS Code from https://code.visualstudio.com/
Then install 'Debugger for Chrome' extension into it.
![](/Support/Attachment/63424.aspx)
Open Rapise engine in VS Code: File > Open Folder... and choose 'C:\Program Files (x86)\Inflectra\Rapise\Core\Engine'
![](/Support/Attachment/63425.aspx)
In VS Code go to Debugger pane and add new debugger configuration. Detailed info on debugger configuration is available here:
https://github.com/Microsoft/vscode-chrome-debug
![](/Support/Attachment/63426.aspx)
Attach VS Code to Chrome.
![](/Support/Attachment/63427.aspx)
Start recording in Rapise and click on one of the tab control headers. VS Code will break into the code.
![](/Support/Attachment/63428.aspx)
Happy debugging!