Open in app

Sign In

Write

Sign In

Chalitha
Chalitha

3 Followers

Home

About

Mar 4, 2021

How to install Load Runner 2021 Community Edition

Use you preferred browser and navigate to https://www.microfocus.com/en-us/products/loadrunner-professional/download 2. Click on the preferred format for download. I have used LoadRunner_2021_Edition_Standalone_Applications_Micro_Focus_LoadRunner_2021_Community_Edition_Standalone_Applications.zip 3. Once the Download finished, extract the distribution in to your local machine. If it is an .exe file, you need to click on the exe.

2 min read

How to install Load Runner 2021 Community Edition
How to install Load Runner 2021 Community Edition

2 min read


Jan 13, 2021

How to run your test using selenium and TestNG-Intellij IDEA

Why we use selenium with TestNG? These two are very powerful automation tools which can make our lives easier while writing testcases. But default selenium is not providing user friendly reports for test. Using selenium with TestNG, we can generate more readable test results. How we can start? As the…

2 min read

How to run your test using selenium and TestNG-Intellij IDEA
How to run your test using selenium and TestNG-Intellij IDEA

2 min read


Jan 11, 2021

How to create a Firefox profile for selenium testing

What is a profile? Profile is a collection of file which Firefox saves your personal information like bookmarks, passwords and other user preferences. These are stored in a separate location from actual Firefox program files. …

2 min read

How to create a Firefox profile for selenium testing
How to create a Firefox profile for selenium testing

2 min read


Jan 7, 2021

How to setup your Intellj IDEA project for Selenium web driver

This peace of writing will help you to understand the basic steps to follow when you are setting up an Intellj project to write selenium code. Pre requisites You need to configure your IDE with support of selenium. for demonstration purpose I am using Intellj IDEA community 2020.3 Setting up…

2 min read

How to setup your Intellj IDEA project for Selenium web driver
How to setup your Intellj IDEA project for Selenium web driver

2 min read


Jan 6, 2021

How you can read a file content using JAVA Buffer Reader class

If you want to read a file content using java, following code sample will help you to achieve this purpose.I have further describe the steps which help you to understand what this code does You need to create an object from Buffered Reader class. Specify the file location which you need to read. If file has some content, you are reading the file until it becomes null. import java.io.BufferedReader; import java.io.FileReader; import java.io.FilterReader; import java.io.IOException; public class RD { public static void main(String[] args) { BufferedReader reader; try { reader = new BufferedReader(new FileReader( "/home/AA/IdeaProjects/Microsoft1/out/production/Microsoft1/HelloWorld.txt")); String line = reader.readLine(); while (line != null) { System.out.println(line); // read next line line = reader.readLine(); } reader.close(); } catch (IOException e) { e.printStackTrace(); } } }

1 min read

How you can read a file content using JAVA Buffer Reader class
How you can read a file content using JAVA Buffer Reader class

1 min read

Chalitha

Chalitha

3 Followers

Software Quality Assurance Engineer

Following
  • Kasun Aratthanage

    Kasun Aratthanage

  • Niluka Sripali Monnankulama

    Niluka Sripali Monnankulama

  • Ridmi Rangika

    Ridmi Rangika

  • Isuru Uyanage

    Isuru Uyanage

  • Maneesha Wijesekara

    Maneesha Wijesekara

Help

Status

Writers

Blog

Careers

Privacy

Terms

About

Text to speech