Set up Selenium Automation Testing with JavaScript + Node.js + Visual Studio Code

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

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

  • @АннаМороз-е5д
    @АннаМороз-е5д 11 หลายเดือนก่อน

    Thank you so much! Thanks to your video, I was finally able to launch a new project specifically for testing. Looking forward to new videos. Best of luck in your endeavors!

    • @testautomation999
      @testautomation999  11 หลายเดือนก่อน

      Thank you very much!

    • @testautomation999
      @testautomation999  7 หลายเดือนก่อน

      Thanks. I check my the previous project. I can run without error. PS C:\Users\luluk\Documents\video-test> npx mocha home.spec.js
      0 passing (1ms)
      DevTools listening on ws://127.0.0.1:65015/devtools/browser/d58a9582-575c-49ad-b5d8-f803025b2287
      *******Home page title ******* Home Page - Admlucid
      ******Current URL****** admlucid.com/
      ******Page Header******* Selenium Automation Testing
      PS C:\Users\luluk\Documents\video-test> . You may check your environment.

  • @yaswanthraj9674
    @yaswanthraj9674 หลายเดือนก่อน

    Thanks for your videos.. But I have an issue while executing the code: 'Builder is not defined.'
    I tried to copy and place the chrome driver in folder /usr/local/bin/ but still I could see the issue.
    Can someone help me here..

    • @testautomation999
      @testautomation999  หลายเดือนก่อน

      Thank you for watching, I did not copy and paste chrome driver, enter command of "install selenium-webdriver"; please refer to the video from 1:10 min.

  • @TriPutra-c6i
    @TriPutra-c6i 11 หลายเดือนก่อน

    thanks alot.
    question in the result it showing 0 passing. how we can get the actual if it all passed. and show case is passed ex: home spec passed

    • @testautomation999
      @testautomation999  11 หลายเดือนก่อน

      If we want to have not 0 passing, we need to re-structure our tests as:
      describe("ADM Tests", () => {
      it("Go Home", async function(){
      });
      it("Go Golf" ,async function(){
      });
      });
      Thank you for the comments!
      ADM Tests
      ✔ Go Home
      ✔ Go Golf
      2 passing (5ms)

  • @thanhproo1412
    @thanhproo1412 9 หลายเดือนก่อน

    Hi there , thank you so much for this informative video! What other resources would you suggest to learn more and improve my skills in automation testing?

    • @testautomation999
      @testautomation999  9 หลายเดือนก่อน +2

      Thank you very much! It's our pleasure, our videos are informative. I suggested other skills in automation testing maybe API test, Load/Performance test, as UI automation testing we only introduced Selenium, other automation UI testing such as Cypress we will introduce later.

  • @cirodirosa6752
    @cirodirosa6752 11 หลายเดือนก่อน

    Looks like I'm missing something. I can't seem to get the Chromedriver to work.
    npx mocha home.spec.js
    Error: Unable to obtain browser driver.
    Any suggestions? Thanks!

    • @testautomation999
      @testautomation999  11 หลายเดือนก่อน

      Not sure which steps may be missed. May check codes.

    • @cirodirosa6752
      @cirodirosa6752 11 หลายเดือนก่อน

      @@testautomation999
      Thank you for replying.
      I can start and stop the chromedriver on a separate require js
      But, executing your example js with the selenium-driver.. no luck
      Error: Unable to obtain browser driver.😔

    • @milyoszw
      @milyoszw 10 หลายเดือนก่อน

      for me worked npm install mocha

  • @SENTHILVELU-n4e
    @SENTHILVELU-n4e 8 หลายเดือนก่อน

    With this shall we launch desktop applications?

    • @testautomation999
      @testautomation999  8 หลายเดือนก่อน

      You need to download and install Visual Studio Code and Node.js, then you can write selenium scripts in JavaScript. Do I answer your question? Thanks.

  • @matthinchcliffe6158
    @matthinchcliffe6158 8 หลายเดือนก่อน

    Can I do this with VS instead of VS Code?

    • @testautomation999
      @testautomation999  8 หลายเดือนก่อน

      This case we used VS Code with JavaScript, if you setup JavaScript with VS, it will be OK.

  • @KhBlog24
    @KhBlog24 7 หลายเดือนก่อน

    please tell me how to solve the error "Error: Unable to obtain browser driver."

    • @testautomation999
      @testautomation999  7 หลายเดือนก่อน

      Thank you! You may check install selenium-webdriver, and make sure installation successfully.

    • @Gaimo_
      @Gaimo_ 7 หลายเดือนก่อน

      I have the same problem after building my application, how do I solve it? It works in the test environment, but after building it doesn't.

  • @FloStudios
    @FloStudios 10 หลายเดือนก่อน

    Why mocha rather than just running the code with node?

    • @testautomation999
      @testautomation999  10 หลายเดือนก่อน

      Just use mocha test framework. It may run in node or other test framework. Thanks.