Welcome to C# Interview Questions. Here you will get so many questions related to c# interview and c# programs. It will definitely enhance your c# programming knowledge.
Capture FullPage Screenshot in Extent Reports – Java
Capture Screenshot in Extent Reports will discuss about capturing the screenshot of a particular failure step in the HTML report. In our previous blog we have seen how to log the messages in the report. Same way here we will capture the screenshot for a particular failure step. The screenshot will give the information about […]
Extent Report With Multiple Classes
Extent Report with Multiple classes will discuss about how to create a single report when you have multiple classes. Usually people will face issue that they will get the report with single class as all the extent reports related classes will be in the same class but when they have multiple classes then they might […]
Generate Excel Report in Selenium using TestNG
In software test automation after completion of the test suite execution we need to have a report for the execution status and it is the only way of evidence for the pass and fail status of the tests. And most of the clients bother about the detailed report of the execution status. Most of the […]
Image Comparison in Selenium
Image Comparison in selenium will discuss about how to compare two images in selenium. Practically speaking image comparison is not possible with selenium web driver but when there is a specific need then we can depend on third party API to achieve this functionality. AShot is of the API’s we can use to compare two […]
Selenium Interview Questions – 1
1. What is Automation Testing? Automation Testing or Test Automation is a process of automating manual testing process to test the Application Under Test. Test Automation is the use of special software to control the execution of tests and the comparison of actual outcomes with predicted outcomes. Test Automation can automate some repetitive but necessary […]
Read data from Excel to DataProvider in Selenium
Read data from excel to dataprovider in selenium will explain how we can get the data from excel sheet and will pass the same to testng dataprovider. While working with the data driven testing we need to pass so much of data to the test methods as parameters. But maintaining the data is very difficult […]
JavaScriptExecutor in Selenium
JavaScriptExecutor is one of the interfaces in selenium. The basic advantage of JavaScriptExecutor is it provides a way to execute JavaScript in Selenium Webdriver. Sometimes locators may not work, in that case JavaScriptExecutor will helps to interact with the web elements on the particular webpage. The reason behind this is; even selenium webdriver internally converts […]
Handling Textboxes in Selenium
Handling textboxes in selenium will discuss about how to handle textboxes on a webpage. Basically a textbox is an input tag and will accept character sequence. While automating any application if you want to automate any textbox in selenium you have two types of options to enter data into the textbox. One is using sendKeys() […]
Katalon Analytics – Introduction
Automation test execution reports are only the evidence for the execution status (i.e. how many test cases passed or failed etc…). But when you want to track the history of the test automation execution status we need to depend on some third-party tools. But the Katalon Analytics(Beta) introduced in the latest version of Katalon Studio […]
No More Driver EXE files for Selenium Execution – Instead Use WebDriverManager
Why do we use executable files for Launching browser using selenium? After selenium 3, We got habituated to download exe files like chrome.exe, geckodriver.exe etc. to launch browsers. All these executable files are standalone server executable files that implements JSON-wire protocol and works as a glue between the test script and Browsers. Most often, when […]