Selenium WebDriver New Feature: "Selenium Manager" Automatically Downloads Browser Drivers

Поділитися
Вставка
  • Опубліковано 3 лис 2024

КОМЕНТАРІ • 4

  • @SuperSQA
    @SuperSQA  7 місяців тому

    🎁 Amazing QA Automation Learning Opportunity: www.supersqa.com/qa-automation-training-bundle
    📚 Live training with a mentor: supersqa.com/bootcamp

  • @RenatoGuedes
    @RenatoGuedes 6 місяців тому

    When I execute the file to open the browser, it opens and after it finishes loading the page it automatically closes the browser. Do you know why and what I can do? Thanks!

    • @SuperSQA
      @SuperSQA  6 місяців тому +1

      @RenatoGuedes, that has been behavior of chrome for over a year now. Once the script ends it just closes the browser even if you do not have a .quit() or .close(). There are several ways to deal with this but the way I deal with it is I just put a breakpoint at the end of the script so the browser stays open.

    • @RenatoGuedes
      @RenatoGuedes 6 місяців тому

      @@SuperSQA thanks