Monday, August 30, 2021

Effort Estimation


Effort Estimation :
    Project Analysis  & Understanding    5 Days
    Requirement Gathering                       3 Days
    Planning                                                  2 Days
    Scripting    
                    Simple                                     2 Days
                    Normal                                    2 Days
                    Complex                                  Based on Application Behaviour
  Design Scenario                                      2 Days
  Execution & Analysis                             3 Days                         

Test Planning :-
        Document Purpose
        Overview
        References
        Architecture
        Scope of Testing
                            In Scope
                            Out Scope
       Test Approach
       Test Scenario
        Test Entry & Exit Criteria
        Suspension & Resumption Criteria
        Environment Details
        Test Data
        Tools
        Test Schedules
        Stub Approach
        Metrics
        Work load analysis
        Risk, assumptions, Dependencies Constraints.
        Success Criteria
        Open Items, Acronyms.


web_get_int_property(HTTP_INFO_RETURN_CODE);

This function to check the script is successfully accessed the requested page.

SSL Certificate :- 

    web_set_socket_option("SSL_Version",  "TLS 1.2");

    web_set_socket_option("SSL_CIPHER_LIST", "ECDHE-RSA-AES128-GEM-SHA256");

Error :- web_set_socket_option to supply suitable ciphers (eg :- SHA256).

Protocol : TLS 1.3

Key Exchange Group : X25519

Signature Algorithm : ECDSA

CIPHER : AES-128-GCM

Hash Algorithm : SHA-256

Note :- 

If the Protocol is HTTP :- we use   web_set_proxy("proxyName:<port>");

If the Protocol is HTTPS :- we use  web_set_secure_proxy("proxyName:<port>");


No comments:

Post a Comment

Thread

Native Thread Demon Thread Non-Demon Thread Native Thread: - Any Method/Thread which is mapped to OS is called Native Thread or Method. Demo...