Run selenium automation testing in Docker

Поделиться
HTML-код
  • Опубликовано: 28 сен 2024
  • Welcome to our comprehensive guide on setting up Selenium automation testing within Docker containers. In this tutorial, we'll explore the seamless integration of Selenium with Docker, enabling efficient, scalable, and portable testing environments. Whether you're a seasoned QA engineer or just getting started with automated testing, this tutorial will walk you through the steps to implement Selenium within Docker, optimizing your testing processes.
    For access to our website used for testing and our step by step guide, please visit our website at www.admlucid.c...
    Stay tuned for our future videos where we build our selenium automation test project.
    Download and install IntelliJ: www.jetbrains....
    In our series of videos, we will introduce the basics of selenium automation testing for beginners, help beginners learn coding skills, and design and develop their own selenium automation test project. Learning and doing it by yourself is our goal. On our web site( www.admlucid.com) there is information about selenium automation testing, step-by-step guides and test projects which can be useful to your learning. You may check the source for our code on GitHub. We hope you enjoy the videos and that you can finish your own selenium automation testing project.

Комментарии • 10

  • @testautomation999
    @testautomation999  7 месяцев назад

    As asked how to set up Firefox in Docker, enter commands: docker pull selenium/standalone-firefox; docker pull selenium/node-firefox-debug. And then Docker will give guiding commands to install Firefox.

  • @bananaaaaaa
    @bananaaaaaa Месяц назад

    Great video! It would be nice to see the code, if possible, to not have to type everything.

  • @sheillaprosper7126
    @sheillaprosper7126 4 месяца назад

    Hello Sir, I'm trying to replicate what you did in this video, but the name of the IDE you used. Could you pls let me know the name?

    • @testautomation999
      @testautomation999  4 месяца назад

      Thank you for watching the video. You may need IntelliJ Download and install IntelliJ: www.jetbrains.com/idea/download
      and also need Docker.

  • @GLR174
    @GLR174 5 дней назад

    Thanks for the interesting video. The usage of synchronized block is not clear though, i didn't analyze your code, but synchronized blocks are usually used to prevent concurrent access to the code inside this block, and it seems like even though you run tests in parallel, only one thread at a time is executed, while others are waiting for it to finish

  • @EmanuelSantana-lq3tw
    @EmanuelSantana-lq3tw 4 месяца назад

    hey, thanks for the content. How can you proceed to use docker and to get the devtools? I saw you had a video about the devtools but not in docker.
    I did the setup you showed for docker and the one for devtools, but things don't work. Do you know how to proceed with that? Thanks for your videos.

    • @testautomation999
      @testautomation999  4 месяца назад +1

      Thank you! Sorry to delay replying. You may try to use "ChromeDriver driver = (ChromeDriver) new RemoteWebDriver(new URL(remote_url_chrome), options)" instead of "ChromeDriver driver = new ChromeDriver()"

  • @nkpro9377
    @nkpro9377 7 месяцев назад

    Hello, I followed your guidance about the Selenium grid hub and node. I've almost done the example except for the VNC. After running the test, the session is automatically removed from the grid, so I can click on the camera icon. How can I fix it? Please give me the ideal. Thanks

    • @testautomation999
      @testautomation999  7 месяцев назад

      Thank you for watching the video. In my case, the session would be keeping for a while, after a while the session would be disappearing. I clicked on the icon to watch the processes when the test was running.