IFrame (FullForm: Inline Frame) is an HTML document that is included in another HTML document and is used to place the contents from another source. Eg: Advertisements, Youtube Videos etc…Almost all site includes IFramenow a day, where they would be displaying advertisements or playing videos of other sources.Now, let’s see how to identify and handling of IFrames in Selenium with C#.Net technology.There are two ways to identify the in your web application: When perfo...
Read More
Synchronization meaning: when two or more components involved to perform any action, we expect these components to work together with the same pace. The co-ordination between these components to run paralelly is called Synchronization.Synchronization (Wait) in Selenium has a great significant value.Now a day, we see most of the web applications are developed by using Javacript and Ajax where it might happen that some of the elements may load at distant time intervals, due to which we may encount...
Read More
Suma G C | Selenium,
Selenium WebDriver,
Waits,
Synchronization,
Selenium Waits in c#,
C#.net,
Software Testing,
Automation Testing,
Web Automations | Visual Studio,
.NET,
Software Testing,
C#,
C#.NET | 3 Comments |
Share
|
Wouldn’t it be great if Test Report are sent automatically across team as soon the Test Execution is complete??Now, let’s see how to achieve this using Office 365.com, Outlook.com and Gmail.com account as the SMTP host.Include the below code in your OneTImeTearDown (NUnit) or AfterClass (TestNG) method: we attain this feature using library => System.Net.Mail; using System.Net.Mail;namespace MailConfiguration{ s...
Read More
Suma G C | selenium Webdriver,
Automation Testing,
Software Testing,
Reporting,
C#.net,
Email Reports,
Web Automation | Visual Studio,
.NET,
Software Testing,
C#,
C#.NET | 0 Comments |
Share
|
When you are working with certain projects which involves the Customer records, you might need to track of each and every addition/change made to system along with who create, modify and delete the records. Here I am going to show you how to implement the Audit Trail using Entity Framework in ASP.NET. Entity Framework keeps track of entity objects when we have modified them. Here I am going to use the ‘ObjectStateManager’ which is EF’s caching management object to access t...
Read More
What is Asp.Net Web API?Asp.Net Web API is a framework for building HTTP services that can be consumed by a broad range of clients including browsers, mobiles, iphone and tablets. It is very similar to ASP.NET MVC since it contains the MVC features such as routing, controllers, action results, filter, model binders, IOC container or dependency injection. But it is not a part of the MVC Framework. It is a part of the core ASP.NET platform and can be used with MVC and other types of Web applicatio...
Read More
Visual studio installation comes with the various predefined project templates, and we can use one of these templates (like console application, class library, ASP.NET web application, etc) to create a new project.We can create custom project templates and have they appear in create new project dialog under the project selection templates.Here I would show you the step by step procedure on how to build the custom solution template with multiple projects, configuring it in visual studio and have ...
Read More
WCF (Windows Communication Foundation) is a programming platform and runtime system for building, configuring and deploying network-distributed services. It is the latest service oriented technology; Interoperability is the fundamental characteristics of WCF. WCF provides a common platform for all .NET communication.WCF provides a runtime environment for your services, enabling you to expose CLR types as services, and to consume other services as CLR types. So what is SOAP and REST?What is SOAP?...
Read More
Microsoft has released the preview version of Visual Studio 2015 and .NET 4.6 for developers to try and provide feedback on usage or issues. .NET 4.6 preview comes with C# 6.0 which includes the new additional features expected by developers to improve the coding productivity.In this article I am going to describe the new features introduced in C# 6.0. If you haven’t download the Visual Studio 2015 please get it from below download button.Property Initialization with default valueIn C# 6.0...
Read More
Step 1. Create a new website and Add DataSet to the WebsiteRight Click on the project, Add new item Dataset, and name it as Employees.xsd.Step 2. Adding DataTable to the DataSetOur next step would be to add a DataTable to the Type DataSet. Step 3. Adding Columns or fields to DataTableIn the DataTable we need to specify the column names that we want to display in the Report.Step 4. Adding the RDLC ReportRight click on the project and Add New Item, Report Wizard where we configure ...
Read More
Windows Phone is windows mobile operating system from Microsoft.In my project, there was a requirement of Overlay panel whenever the data is requested from server (i.e., when task takes some time to execute).Here, I am going to show you a sample example of using overlay in windows phone project.Find the sample solution hereOverlay, is it a control or a property?No, the overlay is not a control or a property but it is a process which can be achieved using Popup a Class present in Windows Phone 8 ...
Read More