Posts

Showing posts from November, 2020

What is the way forward after Coded UI deprecation

What we will do after Coded UI deprecation? Most of us are aware about Microsoft official announcement that Coded UI will no longer be available after Visual Studio 2019. This news triggers the question for those teams who are using Coded UI, what they will do? We have listed down here some points that might help to take a decision. Why Microsoft is deprecating Coded UI Test? Coded UI tests are used for UI-driven functional automation of web apps and desktop apps. Open source UI testing tools such as  Selenium  and  Appium  have gained momentum in recent years, have a strong community backing and are now pretty much industry standards. Coded UI’s cross-browser testing solution was itself based on Selenium. Additionally, both Selenium and Appium work cross-platform and support multiple programming languages. Other important point is that Test automation focus is also shifting from predominantly UI driven testing to more unit testing and API testing. For how long Microsoft will

Controlling Your Code's Flow with PowerShell's Control Statements

Image
PowerShell Control Statements Windows PowerShell provides several ways to control the flow of code. You can use conditional statements to define conditions and the actions to occur when those conditions are met. You can even specify the actions to occur when a condition isn’t met. PowerShell Control statements can be broken down into three sections: Conditional statements Used when you want to execute line of code depending upon some condition. Looping statements Used when you want to perform some task multiple time. Flow control statements Used along with conditional and loop statements to control the flow of execution. Lets go through all, one by one: Conditional statements if statement - execute the script if condition evaluates to true. elseif statement - execute the script if condition evaluates to true and all if, elseif conditions before it false. else statement - execute the scripts that follows it when none of the conditions in if, elseif evaluates to true. Syntax   

HTML Anchor <A> Tag Attributes

Image
What are links in HTML -  HTML Links - Hyperlink How to create links to different sections of same page -  connecting sections of same page In this tutorial, we tutorial you will learn about different attributes of anchor <a> tag. Hyperlink Attributes title :  Defines the title of a link, which appears to the user as a tooltip. <a href=" https://cstutorials1.blogspot.com/2020/10/how-to-create-links-to-sections-on-same.html " title="info_about_link"> content visible as link</a> Output:  content visible as link target : Specifies where to open the linked URL. It can have 4 values. _self - opens the linked URL inside same window or tab (default) _top - opens the linked URL in top most frame of the window.     _parent - opens the linked URL in parent frame of the window. _blank - opens the linked URL in new tab or window. download : Prompts the user to download the linked resource instead of opening in new tab/window. <a href"address of file