learncodingforfree.com

SELENIUM WEBDRIVER

      Selenium  WebDriver  is  one  of  the    core  component  of   the  Selenium  project  used  to  automate  web browsers  and  primarily  used  for  testing  web  applications .  Selenium  Webdriver  allows  direct  communication  with  browsers   by  communicating  with  their  native  APIs ,  which  makes  test  execution  faster   and  more  efficient    compared  to  older  […]

SELENIUM WEBDRIVER Read More »

JAVA INTERFACE

  An  interface  in  Java  is  a  blueprint  for  a  class    that  defines  a  set  of  behaviors (methods )  that  a  class  must  implement .  Interface  in  java  is  mainly  used  to  achieve  abstraction  and   multiple  inheritance .         Key  Characteristics  of  Java  Interface :     Abstraction :  Interface  hide 

JAVA INTERFACE Read More »

SELENIUM OVERVIEW

  Selenium  is  a  popular  open-source  widely  adopted   framework  designed  for  automating  web  browsers  .  Selenium  is  widely  used  for    functional  testing ,   regression  testing  and  performance  testing .   It  supports  multiple  programming  languages such as  Java , c#, Python , Javascript , Ruby  etc.    and  run  accross  various  platforms  like  Windows ,

SELENIUM OVERVIEW Read More »

JAVA INHERITANCE

  Inheritance  in  Java  is  a  fundamental  principal  in  OOP ( Object-Oriented  Programming )   by  which  one  class  is  allowed  to  inherit  the  properties (fields)  and  behaviors (methods )  of    another   class .   A   class  that  inherits  the  another  class  can  reuse  the  properties  of  that  class . Example : //Parent  class class  Gift {    

JAVA INHERITANCE Read More »

JAVA POLYMORPHISM

    Polymorphism  in  java  is  one  of  the important  concept   which  allows  objects  to  behave  differently  based  on  their  specific  class  type .  In  Java , polymorphism  allows  the  same  object  or  method  to  behave  differently  based  on  the  context  of  the  project.           Features  of  Polymorphism:   Runtime  Decision

JAVA POLYMORPHISM Read More »

JAVA ENCAPSULATION

    Encapsulation  in  Java  is  a  core  concept   in   object-oriented  programming (OOP ) concept   which  combine  data  and   the  functions  that  work  on  data  into  a  single  unit  like  class.  Encapsulation  is  also  known  as    data  hiding  because  it  restricts  the  direct  access  to the  internal  state  of  an  object  by  protecting  data 

JAVA ENCAPSULATION Read More »

ABSTRACTION IN JAVA

    Abstraction  in  java  is  a  core  principle  of  Object-Oriented  Programming (OOP)  language  which  is  used  to  hide  the   internal  complex  implementation  details  and  show  only  the  necessary  functionality  &  features  to  the  user .    Java  Abstraction  focuses  on   what  an  object  does  rather  than  how   it   does  it   which  siplifies  the  code 

ABSTRACTION IN JAVA Read More »