Automation Hub Sarthak
Automation Hub Sarthak
  • 392
  • 608 875

วีดีโอ

Parallel execution using parallel=tests, parallel=classes, parallel=methods in testng.xml file
มุมมอง 62หลายเดือนก่อน
#testng
Parallel Execution using parallel=true in @DataProvider and attribute data-provider-thread-count
มุมมอง 80หลายเดือนก่อน
#testng
Plugins - Maven Integration plugin in Jenkins
มุมมอง 3597 หลายเดือนก่อน
#jenkins
Create a job in Jenkins A simple freestyle project
มุมมอง 2667 หลายเดือนก่อน
#jenkins
Uninstall Jenkins from your local
มุมมอง 3247 หลายเดือนก่อน
Uninstall Jenkins from your local
Basic Configuration in Jenkins for Test Automation
มุมมอง 3167 หลายเดือนก่อน
#jenkins
Jenkins Dashboard
มุมมอง 3447 หลายเดือนก่อน
#jenkins
Jenkins installation in Windows
มุมมอง 1K7 หลายเดือนก่อน
#jenkins #cicd
What is Jenkins
มุมมอง 5667 หลายเดือนก่อน
#jenkins
(In Hindi) Wait Conditions in Selenium4 revisited again
มุมมอง 2069 หลายเดือนก่อน
#selenium #webdriver #implicitWait #explicitWait #fluentWait
(In Hindi) How to manage broken links with Selenium
มุมมอง 2709 หลายเดือนก่อน
#selenium #webdriver #brokenlinks
(In Hindi) Scenario Outline in Cucumber
มุมมอง 735ปีที่แล้ว
#cucumber #bdd #ScenarioOutline
Las Vegas - The view from a plane at night - Brightest city in the world
มุมมอง 318ปีที่แล้ว
Las Vegas - The view from a plane at night - Brightest city in the world
(In Hindi) What is Hybrid Framework
มุมมอง 1Kปีที่แล้ว
#Hybrid framework
(In Hindi) What is Data Driven Framework
มุมมอง 2.6Kปีที่แล้ว
(In Hindi) What is Data Driven Framework
(In Hindi) What is Keyword Driven Framework ?
มุมมอง 3.3Kปีที่แล้ว
(In Hindi) What is Keyword Driven Framework ?
(In Hindi) What is Test Automation Framework?
มุมมอง 2Kปีที่แล้ว
(In Hindi) What is Test Automation Framework?
Automating Auto-suggestive Dropdown for Source and Destination in Travel Websites
มุมมอง 509ปีที่แล้ว
Automating Auto-suggestive Dropdown for Source and Destination in Travel Websites
(In Hindi) How to disable infobar - Chrome is being controlled by automated test software
มุมมอง 765ปีที่แล้ว
(In Hindi) How to disable infobar - Chrome is being controlled by automated test software
How to disable infobar - Chrome is being controlled by automated test software
มุมมอง 3.3Kปีที่แล้ว
How to disable infobar - Chrome is being controlled by automated test software
(In Hindi) History, Features, Security Aspect, Use of Java
มุมมอง 291ปีที่แล้ว
(In Hindi) History, Features, Security Aspect, Use of Java
(In Hindi) install TestNG in IntelliJ IDEA and Eclipse and add TestNG Library to respective Projects
มุมมอง 2.1Kปีที่แล้ว
(In Hindi) install TestNG in IntelliJ IDEA and Eclipse and add TestNG Library to respective Projects
(In Hindi) How to setup Selenium in Maven Project in IntelliJ IDEA
มุมมอง 2.5Kปีที่แล้ว
(In Hindi) How to setup Selenium in Maven Project in IntelliJ IDEA
(In Hindi) Create a Maven Project in Eclipse and add dependencies in pom.xml file
มุมมอง 8Kปีที่แล้ว
(In Hindi) Create a Maven Project in Eclipse and add dependencies in pom.xml file
(In Hindi) Download and configure Maven on Windows
มุมมอง 528ปีที่แล้ว
(In Hindi) Download and configure Maven on Windows
(In Hindi) Download version of Eclipse best suited for Java-Selenium Learning
มุมมอง 1.2Kปีที่แล้ว
(In Hindi) Download version of Eclipse best suited for Java-Selenium Learning
(In Hindi)Download, install and configure JAVA 17 on Windows OS
มุมมอง 1.1Kปีที่แล้ว
(In Hindi)Download, install and configure JAVA 17 on Windows OS
(In Hindi) A very common but frustrating mistake while using @Test in TestNG
มุมมอง 581ปีที่แล้ว
(In Hindi) A very common but frustrating mistake while using @Test in TestNG
A very common but frustrating mistake while using @Test in TestNG
มุมมอง 219ปีที่แล้ว
A very common but frustrating mistake while using @Test in TestNG

ความคิดเห็น

  • @roshanmaskey3909
    @roshanmaskey3909 7 วันที่ผ่านมา

    Problem: I need to run my cucumber .feature file to execute in an order defined by me and rather not to run in the default order which is the folder structure.i tried like you shown in this session but it is throwing io.cucumber.java.InvalidMethodSignatureException: A method annotated with Before, After, BeforeStep or AfterStep must have one of these signatures: * public void before_or_after(io.cucumber.java.Scenario scenario) * public void before_or_after() @Before(order = 1) @Given("User is on login page") public void user_is_on_login_page() { } @Before(order = 2) @When("User login into the application with username {string} and password {string}") public void user_login_into_the_application_with_username_and_password(String username, String password) { testcontextsetup.base.webdriverManager().manage().timeouts().implicitlyWait(5, TimeUnit.SECONDS); login = testcontextsetup.pageobjectmanager.getLoginPOM(); login.usernameEnter(username); login.passwordEnter(password); } @Before(order = 3) @When("User Sign in") public void user_sign_in() { login = testcontextsetup.pageobjectmanager.getLoginPOM(); login.signIn(); } after this customer creation step creation should execute then customer authorization . please help me . thanks in advance

  • @roshanmaskey3909
    @roshanmaskey3909 7 วันที่ผ่านมา

    building BDD framework java selenium there is scenario like maker and checker login because it is banking domain maker means customer creation and checker means customer authorization where both has 2 different login credentials i.e maker username:- ROOUSER01 ,password :-Test@1234 and checker username:- ROOUSER02 , password:-Test@1234 while maker step definition creates a 1 runtime value by application after customer got created it should logout and login as a customer authorization then i have to pass the particular runtime value as a customer id in customer id text field we should approve in checker stepdefintion . i am not getting idea how to pass runtime value from maker testcase to checker feature file as well as login by different login credentails i have to do end to end scenarion i.e customer, account , deposit ,transaction, loan creation and authorization for all there will be txnid generation from application we need to pass in each authorization stepdefinition with different login credentails .

  • @AnkiYouTube05
    @AnkiYouTube05 9 วันที่ผ่านมา

    Best tutorial.... Thank you 🤟🏻🙏🏻🤗♥️👏🏻✨

  • @AnkiYouTube05
    @AnkiYouTube05 11 วันที่ผ่านมา

    bhaiya Api testing postman ki series bhi baniye please♥️🙏🏻

  • @AnkiYouTube05
    @AnkiYouTube05 11 วันที่ผ่านมา

    why this channel has very subscriber your videos are amazing thanks a lot sir♥️🤟🏻👏🏻✨👍🏻🤗🙌🏻

  • @AnkiYouTube05
    @AnkiYouTube05 12 วันที่ผ่านมา

    Nice video.... Thank you so much sir♥️🤟🏻👏🏻✨

  • @SantoshiBanjare-zz6sg
    @SantoshiBanjare-zz6sg 15 วันที่ผ่านมา

    Thanku sir

  • @krishnaindrale1673
    @krishnaindrale1673 19 วันที่ผ่านมา

    Thank you sir just because of you i lost my fear in dynamic x paths

  • @Vaibhav-q9z
    @Vaibhav-q9z 19 วันที่ผ่านมา

    is this playlist sufficient to learn BDD cucumber ?

    • @automationhubsarthak1186
      @automationhubsarthak1186 19 วันที่ผ่านมา

      will create a framework video next week

    • @Vaibhav-q9z
      @Vaibhav-q9z 18 วันที่ผ่านมา

      @@automationhubsarthak1186 okay, thank you.. waiting for the framework videoes playlist🙂

  • @amarnathgadade8106
    @amarnathgadade8106 20 วันที่ผ่านมา

    Sir Plz provide interview Question

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

    Pura concept clear

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

    thanks for providing such a great content

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

    Bhai thoda raham kro Regular rha kro pls

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

    Bhai regular rha kri

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

    good video sirji

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

    Ap jaysa teacher is duniya koe nahi thank you 🥹

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

    Dusra video banao sir ek usme result ko pass aor fail excel me dikhaye

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

    Bahut din bad aye sir wait bahut karna pada apke video ke liye

  • @aishaish-f3l
    @aishaish-f3l หลายเดือนก่อน

    Sir I want you as a trainer because you are a great teacher...

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

    Hi, can we include a video link or a video play button in this report when we record the video of our testing framework?

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

      yes but for that you have to use monte-screen-recorder dependency in maven pom.xml file . Please watch this video - th-cam.com/video/E7wq1BEzKG4/w-d-xo.html

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

    i am getting this Chrome is being controlled by automated test software and webiste is also not opening , and in url data not secure something is coming . please help

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

    Thanks a lot ... you saved my day.

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

    Thank a lot sir 🙏 I was stuck there since 4 day's

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

    Very good explanation liked your videos

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

    Awesome explanation Sarthak, Thank you!! :)

  • @ATechCloud-iA
    @ATechCloud-iA หลายเดือนก่อน

    Thank you @sarthak Bhai , You've helped a lot.

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

    Sir, tools option is not coming

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

      I will update to latest Appium2. All these are too old. Kindly wait for the new playlist

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

      @@automationhubsarthak1186 noted sir

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

    Thank you so much it worked! :)

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

    you video is not much helpful much more thing not getting after installation as per you step and helpful links not provided

  • @RonakPatel-t2n
    @RonakPatel-t2n 2 หลายเดือนก่อน

    I am getting some issue pls give me ur number

  • @RonakPatel-t2n
    @RonakPatel-t2n 2 หลายเดือนก่อน

    Nice Video @sarthak

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

    Hi this is awesome but I have one question how to print all the tshirt names in an array

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

    ❤️👍🏻best

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

    Best one.

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

    I didn't find droidscreen 1.2 version, could you please send it to me

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

    sir bhohat achha video banaya hai apne thankyou so much sir

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

    Mere bas first class run ho raha hai, baki k nahi

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

    Great explanation finally 🔥about string my whole concept is clear now 👍🏻

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

    Can I get the list of dependencies that you have added?

  • @Amitpatil-g8g
    @Amitpatil-g8g 2 หลายเดือนก่อน

    nice sir .. main bahut din se search kar raha tha bdd cucumber hindi mein. muze english clear nahi aati esliye.

  • @PiyushRanjan-x4x
    @PiyushRanjan-x4x 2 หลายเดือนก่อน

    VERY NICE VIDEO COVER ALL SMALL POINTS

  • @swapnilkamani-wk8uo
    @swapnilkamani-wk8uo 3 หลายเดือนก่อน

    Hi Sir, I tried the following example but it is not showing the ascii order I used the following example- package testNgFrame; import org.testng.annotations.Test; public class priority { @Test public void Zed() { System.out.println("Test"); } @Test public void AddingBeneficiary() { System.out.println("B"); } @Test public void Home() { System.out.println("C"); } @Test public void Dependent() { System.out.println("A"); } } Output is - PASSED: testNgFrame.priority.Dependent PASSED: testNgFrame.priority.Zed PASSED: testNgFrame.priority.Home PASSED: testNgFrame.priority.AddingBeneficiary =========================== Question is- why it is not showing the output as an alphabetical order?

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

    Thank you so much you are simply great man😊👍

  • @VijaySingh-dh2wj
    @VijaySingh-dh2wj 3 หลายเดือนก่อน

    ❤❤❤

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

    informative video, and that line on 2.10sec- swatantra republic hota hai kya was 😂

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

    12:45 😂😂😂😅 aray sir kya joke maraye ho. 24:08 ab samjha aye web driver logic 😮

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

    Thank you

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

    You explain very nicely.👌👌👌👌

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

    whole concept is cleared after watching the video 1 time thank you so much sir.

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

    Awesome!!