Selenium Framework - Part 16 - Enum - The Saviour

แชร์
ฝัง
  • เผยแพร่เมื่อ 23 ม.ค. 2025

ความคิดเห็น • 28

  • @shiladityabose200
    @shiladityabose200 3 ปีที่แล้ว +4

    This is gold Amuthan.. I was struggling to find good content related to Automation Testing and was fed up seeing same basic automation tutorials in other channels. Thanks a lot for putting up such quality content.

    • @TestingMiniBytes
      @TestingMiniBytes  3 ปีที่แล้ว +1

      Thanks Bose. Please also look at other playlists and share with your friends. 🙏

  • @digvijaytikka1917
    @digvijaytikka1917 3 ปีที่แล้ว +2

    From every video I'm learning something new that I did not knew before

    • @TestingMiniBytes
      @TestingMiniBytes  3 ปีที่แล้ว +3

      You have more to learn in the upcoming videos. Keep watching 👀 and share about this channel to your friends 🙏

    • @digvijaytikka1917
      @digvijaytikka1917 3 ปีที่แล้ว

      Absolutely

  • @krishanuchakraborty3500
    @krishanuchakraborty3500 3 ปีที่แล้ว +3

    Great content Amuthan !!! I am loving the implementations of the lesser used Java concepts in framework in real time. Thanks a ton for your hard work, looking forward to learn more from you.

  • @supriyassampath1419
    @supriyassampath1419 3 ปีที่แล้ว +2

    Thank you so much for your contribution.. this really helps to build real time framework.. thanks again.. I did not find these concept anywhere else.. it's incredible... god bless you

  • @swapnilbodade1336
    @swapnilbodade1336 4 ปีที่แล้ว +2

    Thanks for sharing this. Keep it up

    • @TestingMiniBytes
      @TestingMiniBytes  4 ปีที่แล้ว

      Hi Swapnil, I am glad that you liked the content !!

  • @manikannanmarimuthu9232
    @manikannanmarimuthu9232 4 ปีที่แล้ว +2

    Thanks for sharing Knowledge.

    • @TestingMiniBytes
      @TestingMiniBytes  4 ปีที่แล้ว +1

      Thanks a lot for taking valuable time to appreciate. Welcome aboard for an exciting learning journey 😄

  • @rajasekharmaddigalla1463
    @rajasekharmaddigalla1463 4 ปีที่แล้ว +2

    Hi Amuthan, your videos are helping me more on creating a framework in realtime, Hopefully, how many videos will be in this playlist?

    • @rajasekharmaddigalla1463
      @rajasekharmaddigalla1463 4 ปีที่แล้ว

      in my office I have a limited period of time to create a new framework I have covered all your 16 videos, is there any way to have a GitHub link to get this complete framework.

    • @TestingMiniBytes
      @TestingMiniBytes  4 ปีที่แล้ว +1

      I do not know the count to be frank. I am trying to provide extensive knowledge for someone who is watching my channel.
      Thanks for your patience watching all of them. If you find videos little lengthy change the playback speed to 1.5 or 2

  • @lingeshsd3213
    @lingeshsd3213 4 ปีที่แล้ว +2

    Hi amuthan, please upload and share the github link . It will be very useful to practice and play with it for learning purpose.

    • @TestingMiniBytes
      @TestingMiniBytes  4 ปีที่แล้ว +1

      github.com/amuthansakthivel/TH-camSessions

    • @lingeshsd3213
      @lingeshsd3213 4 ปีที่แล้ว +1

      @@TestingMiniBytes thanks amuthan bro

  • @shankarlingam4702
    @shankarlingam4702 4 ปีที่แล้ว +1

    Hi bro
    Doing awesome job and can you upload videos non core Java interview program ls for Automation tester

    • @TestingMiniBytes
      @TestingMiniBytes  4 ปีที่แล้ว +1

      Hi Shankar,
      I am focusing more on providing the knowledge to clear interviews. May be if time permits i can upload some thing of that sort. Thanks for understanding..!!

  • @django4084
    @django4084 3 ปีที่แล้ว +1

    Great content as always Amuthan.
    I made a small change to the enum implementation as I am kind of used to setting the config with "application.url","driver.name" etc.
    Thought this might be useful to others if they are looking for something similar.
    public enum ConfigProperties {
    URL("application.url"),
    BROWSER("driver.name"),
    HEADLESS("driver.headless"),
    SCREENSHOT("screenshot.required"),
    RETRY("retry.shouldRetry"),
    RETRY_COUNT("retry.count");
    private final String property;
    ConfigProperties(String property) {
    this.property = property;
    }
    public String getProperty() {
    return property;
    }
    }
    In PropertyUtil, it would be,
    public static String getProperty(ConfigProperties key) {
    if (Objects.isNull(key.getProperty()) || Objects.isNull(CONFIGMAP.get(key.getProperty()))) {
    throw new NullPointerException("Key {" + key + "} does not exist in [config.properties] file. Please check!");
    }
    return CONFIGMAP.get(key.getProperty());
    }

  • @dishankramawat1088
    @dishankramawat1088 2 ปีที่แล้ว +1

    Hi Amutham , sorry but I didn't understoot HASH map and Enum map

    • @TestingMiniBytes
      @TestingMiniBytes  2 ปีที่แล้ว

      Keep moving. In a hash map, we can store key value pairs.
      If the keys of the Map is enum, then we can use EnumMap instead of Hash map. It gives performance improvement.

    • @dishankramawat1088
      @dishankramawat1088 2 ปีที่แล้ว

      @@TestingMiniBytes you have videos on hash map will be better for understanding.

    • @TestingMiniBytes
      @TestingMiniBytes  2 ปีที่แล้ว

      @@dishankramawat1088 don't worry too much. Move on with next topic

    • @dishankramawat1088
      @dishankramawat1088 2 ปีที่แล้ว +1

      @@TestingMiniBytes Yes I am moving on , Today rejected in one automation interview but still not loosing hope

    • @TestingMiniBytes
      @TestingMiniBytes  2 ปีที่แล้ว

      @@dishankramawat1088 I have been rejected in so many interviews. Watch this series completely. You will clear interviews