Thursday 21 September 2017

IDE - Most Used Shortcut In Eclipse/VisualStudio

Eclipse -
1. Going Back To Last Cursor Position - Alt + Left/Alt + Right
2. Ctrl+Q - moves the cursor to the last edit location




Visual Studio
1. Going Back To Last Cursor Position - CTRL + "-"

Maven: How To Add Local Dependency In Maven POM.XML

<dependencies>
  <dependency>
 <groupId>reporter</groupId>
 <artifactId>reporter</artifactId>
 <version>1.0.0</version>
 <scope>system</scope>
 <systemPath>${project.basedir}\lib\CignitiReporter-1.0.jar</systemPath>
     </dependency>
</dependencies>

Monday 5 June 2017

Adding Ranorex.PDF plugin Using NuGet/Package Management Console

About - Ranorex.PDF plugin - It converts Ranorex Default Report To PDF format.
http://www.ranorex.com/blog/ranorex-report-to-pdf-conversion/ 

Editors/IDEs such as Visual Studio/Ranorex may not show up Ranorex.PDF package using Manage Package interface of Editors.

Ranorex.PDF can be installed from Package Management Console.

Type - Install-Package Ranorex.PDF by selecting the project you wish to be installed on.

Project can be selected using Install-Package switch parameter or selecting Project from Package Management Console.