Showing posts with label VisualStudio. Show all posts
Showing posts with label VisualStudio. Show all posts

November 29, 2019

Using Post Build events to copy files in Visual Studio

Using Post Build events to copy files in Visual Studio

The files we may want to use after a build may vary on our framework structure. What if we have test and base framework as two separate p...

November 28, 2019

How to get a console output window in Visual studio to see real time logs

How to get a console output window in Visual studio to see real time logs

In eclipse we do have console output window to show all the logs we write during tests. All the strings written using  System.out.println(...

November 24, 2019

How to Read/Write text file in line by line manner using C#

How to Read/Write text file in line by line manner using C#

What if our data is not stored in a format oriented file types like Excel,Json or XML ? There should be a way to read content from a norma...

November 17, 2019

Start Selenium Grid (Hub-Node) from a single BAT file

Start Selenium Grid (Hub-Node) from a single BAT file

We can setup BAT file to start the selenium Grid , Start Hub in local host and to add Node to the hub. For this to make simple we have ...
Setting Up Selenium Grid (C#) for Parallel/Distributed test execution

Setting Up Selenium Grid (C#) for Parallel/Distributed test execution

We can use Selenium Grid to execute our test parallely in multiple machines with different configurations. Setup Selenium Grid You can...
Bookmark this website for more workarounds and issue fixes.

Verify Zip file contents without extracting using C# + Selenium

While doing automation testing, we may get a scenario where we need to download a zip file and to validate the contents inside it. One way t...