Skip to content
View shrijithps's full-sized avatar

Block or report shrijithps

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
shrijithps/README.md
public class AboutMe {
    public static void main(String[] args) {
        Shrijith profile = new Shrijith();
        profile.displayProfile();
    }
}

class Shrijith {
    void displayProfile() {
        printBanner("Shrijith PS");
        printSection("Experience", "3+ years in Software Testing; Automation & Manual Testing; WebdriverIO | Cypress | Playwright");
        
        printSection("About Me", 
            "🔭 Currently working as Test Engineer",
            "🤝 Currently learning Playwright",
            "💬 Ask me about Automation Testing",
            "⚡ Reach me at shrijithps89@gmail.com"
        );

        printSection("Connect with me",
            "LinkedIn: https://linkedin.com/in/shrijithps",
            "LeetCode: https://www.leetcode.com/shrijith98"
        );

        printSection("Languages", "JavaScript, Java, Python, C++");

        printSection("Tools",
            "WebdriverIO, Cypress, Playwright, Selenium, Cucumber, Postman, JMeter, Git, JIRA"
        );
    }

    private void printBanner(String name) {
        System.out.println("********** " + name + " **********");
    }

    private void printSection(String title, String... details) {
        System.out.println("\n=== " + title + " ===");
        for (String detail : details) {
            System.out.println("-> " + detail);
        }
    }
}

Popular repositories Loading

  1. selenium_learnings selenium_learnings Public

    Snippets helpful for automation

    Java

  2. rest_assured rest_assured Public

    Send get, post request using rest assured

    Java

  3. GitHubActions GitHubActions Public

    Simple Maven Project which launches chromedriver, open google and gets the title of google page using github actions

    HTML

  4. webScraping webScraping Public

    Python code to extract top 250 IMDB rated movies, write to a excel and search for a movie

    Python

  5. java_Learnings java_Learnings Public

    Java Learnings

    Java

  6. requestsModuleBasics requestsModuleBasics Public

    Basic HTTP Requests using Python requests module

    Python