What is HTML DOM & StaleElement Exception in Selenium

แชร์
ฝัง
  • เผยแพร่เมื่อ 31 ธ.ค. 2024

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

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

    I love your dedication, dude... It was Sunday, 11 PM and you were recording this video. Kudos!

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

    No one ever explained DOM so nicely. Thanks Naveen

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

    Thank a lot Naveen for providing a great idea about what is HTML DOM & StaleElement Exception. Keep it up😊

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

    You are true Hero sir...love your dedication..

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

    very useful video and this is new to me in 3.5 years of testing experience. Thanks Naveen

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

    Mind blowing teaching way.....

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

    Great Explanation. Thank You Naveen

  • @varmagsr
    @varmagsr 6 ปีที่แล้ว +2

    Explanation awesome, very easy to follow and understand. thanks for the video

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

    Thanks a lot for a great explanation 😊

  • @ColdSalt-me
    @ColdSalt-me 6 ปีที่แล้ว +1

    Nice video . thank you very much to giving clarity on DOM & how it works

  • @BalaKrishna-gd7si
    @BalaKrishna-gd7si 7 ปีที่แล้ว +1

    Thanks for such a nice video. Useful information and depth of DOM required for automation engineers.

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

    Amazing explanation. Thank you.

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

    Brilliant explanation!

  • @MrRockstar001
    @MrRockstar001 6 ปีที่แล้ว +2

    you give awesome explanation naveen.. :)

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

    Excellent session. But whenever you tell that they ask in interview, I am like Yes have to keep this in mind. Then you tell how you asked the same thing while taking an interview, And trust me the first thought that comes to my mind is "God! If I go for an interview and I get to know that Naveen Khunteta is taking the interview, I'll excuse myself telling, 'I need to use the Washroom' and then i'll run off from there. I don't know why but I am sure, interview with you would be very scary, How much ever prepared I am for it. Hahaha...

  • @sharatchandra2045
    @sharatchandra2045 6 ปีที่แล้ว +1

    Excellent Naveen. Thanks

  • @sampujyadhal2643
    @sampujyadhal2643 6 ปีที่แล้ว +1

    Nicely explained video!!

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

    Hi Naveen, Suggestion for you . While making such video please zoom the word document to 190 % so that we can see the words clearly . thanks for your all videos and efforts. भगवान आपका भला करे |

  • @vivekanandagupta8982
    @vivekanandagupta8982 6 ปีที่แล้ว

    nice explanation , easy to understand all concepts ...!!!

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

    thank you so much naveen you are awesome

  • @sunilreddymallela
    @sunilreddymallela 7 ปีที่แล้ว +2

    Your channel is very good great job , can you please post some more videos related sauce lasbs integration with selenium for cross browser testing

  • @chiranjeevit
    @chiranjeevit 7 ปีที่แล้ว +1

    Hi Naveen, Could you please upload a videos on different Web Element Exception Handling with examples? Thanks in advance

  • @saranyajothi9691
    @saranyajothi9691 6 ปีที่แล้ว

    Hi Naveen, You are doing great job.Thank you so much for ur videos pls upload videos on API

  • @nitish915
    @nitish915 6 ปีที่แล้ว +4

    If DOM structure is different for different browsers then will the xpath be different?

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

      12:25 90% of the time DOM structure remains same for each browser.

  • @NishaGoyal-y2n
    @NishaGoyal-y2n ปีที่แล้ว

    one small query when first page loads the elements would be same when it was loaded first time , what change there could be .not getting that ( on page refresh) any one pls answer TIA

  • @lopamudrajenamani755
    @lopamudrajenamani755 5 ปีที่แล้ว +1

    Nice information. Can you please upload a video on pytest framework with python for API automation?

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

    My amazon cart is empty then navigated to home page added few items to cart. Again I navigated to cart, I can see the added items. Here when user added the items, developer coded in such a way by using CREATE API the cart page will be updated. What understand is, browser is providing a standard DOM format with API's for UI developers to create/update the web pages.

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

    Awesome

  • @ravipratap4862
    @ravipratap4862 5 ปีที่แล้ว

    is this the reason behind each browser have its own browser driver?

  • @nandiniarumugam9772
    @nandiniarumugam9772 7 ปีที่แล้ว +2

    Well explained!!

  • @krishnabhimaneni22
    @krishnabhimaneni22 6 ปีที่แล้ว +1

    Naveen thanks for the amazing explanation.Could you please explain how to handle stale elements? You mentioned we have to provide fresh object reference to over come stale element exception ! Can you explain how ?

    • @r.suganya9036
      @r.suganya9036 2 ปีที่แล้ว

      Store xpath in any string valriable. Then later use it like below.
      string xpath ="providexpath";
      Webelement ele =Driver.FindElement(By.XPath(xpath));
      //Perform desire operation like
      ele.Click();
      If again exception occurs use try catch block to handle exception.

  • @garaabhilash8439
    @garaabhilash8439 5 ปีที่แล้ว

    Hi Naveen ,
    Please tell me about self healing script in selenium

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

    Best of Asia

  • @minecode123
    @minecode123 5 ปีที่แล้ว

    Hi Naveen, Did you worked for HCL earlier?

  • @budhimantudutkt6423
    @budhimantudutkt6423 7 ปีที่แล้ว

    Thanks for the videos naveen.. Very helpful.. My question is will developers create one javascript file each for every browser or only one java script file will interact with every browser DOM API..?

  • @sujaybose
    @sujaybose 6 ปีที่แล้ว

    Hi Naveen, you said javascript uses the API of HTML DOM interface for the webpage, that means selenium has in build javascript libraries(example: findelements etc) that we use while accessing those web elements using selenium?

    • @shivamsingh-oc2mh
      @shivamsingh-oc2mh 6 ปีที่แล้ว

      Yes bro selenium internally converts ur codes in js

    • @sarojjha9243
      @sarojjha9243 6 ปีที่แล้ว

      you are absolutely right. Because of which it is a good practise to use own dynamic xpath

  • @ravikumar-fr2ky
    @ravikumar-fr2ky 7 ปีที่แล้ว

    gr8 stuff...thanku

  • @prabakarm5025
    @prabakarm5025 6 ปีที่แล้ว

    nice videos

  • @dontknowwhattotypelo
    @dontknowwhattotypelo 6 ปีที่แล้ว

    Oke?