What are bin & src folders in Java Automation Framework.

 

  


What are bin & src folders in Java Automation Framework.

  • 'bin' and 'src' are not exclusive to Test automation.

  • These are generic Java folders created to segregate the written-code and the compiled-code.
    • src: Folder where our written code resides. Human readable code files.
    • bin: Folder where the compiled files reside, that the Java Virtual Machine (JVM) executes.. E.g. .class, .jar etc. 

  • In simple words: Developer/Testers , i.e. .Java files >> These .Java files are stored in src folder >> Compile the code >> Java code is converted to Byte-code which can be read by JVM, i.e. .class files stored in bin folder.

  • Please let me know if you want any specific json file to be handled in the python.






  1. Anonymous said...

    Automation testing meaning can be broadly defined as the process which involves running scripts that are executed by leveraging software testing tools. Automated test systems ensure high accuracy and reliability of the test results.

    As no human observations are involved, it ensures more accurate test results. Moreover, this sort of automation testing using open source and paid test automation tools is most suitable for regression testing, performance testing, load testing, security testing along with other types of testing.

Post a Comment