QTOMATION
QTOMATION
  • Видео 306
  • Просмотров 72 851

Видео

Playwright with JavaScript - 19 : Checkboxes handling
Просмотров 229 часов назад
Playwright with JavaScript - 19 : Checkboxes handling
Playwright with JavaScript - 18 : Radio Buttons handling
Просмотров 1914 часов назад
Playwright with JavaScript - 18 : Radio Buttons handling
Playwright with JavaScript - 17 : Input Box handling
Просмотров 1819 часов назад
Playwright with JavaScript - 17 : Input Box handling
Playwright with JavaScript - 16 : Hidden Drop-down Handling
Просмотров 24День назад
Playwright with JavaScript - 16 : Hidden Drop-down Handling
Playwright with JavaScript - 15 : Auto-Suggest Drop-down Handling
Просмотров 3114 дней назад
Playwright with JavaScript - 15 : Auto-Suggest Drop-down Handling
Playwright with JavaScript - 14 : Bootstrap Drop-down Handling
Просмотров 2814 дней назад
Playwright with JavaScript - 14 : Bootstrap Drop-down Handling
Playwright with JavaScript - 13 : Assertions for dropdowns
Просмотров 1414 дней назад
Playwright with JavaScript - 13 : Assertions for dropdowns
Playwright with JavaScript - 12 : Selecting dropdown element (Basic Dropdown)
Просмотров 1421 день назад
Playwright with JavaScript - 12 : Selecting dropdown element (Basic Dropdown)
Playwright with JavaScript - 11 : Soft Assertions vs Hard Assertions
Просмотров 3321 день назад
Playwright with JavaScript - 11 : Soft Assertions vs Hard Assertions
Playwright with JavaScript - 10 : Assertions with Examples
Просмотров 1428 дней назад
Playwright with JavaScript - 10 : Assertions with Examples
Playwright with JavaScript - 9 : Test-Generator (Codegen), record and create test scripts
Просмотров 2628 дней назад
Playwright with JavaScript - 9 : Test-Generator (Codegen), record and create test scripts
Playwright with JavaScript - 8 : Built-in locators
Просмотров 1528 дней назад
Playwright with JavaScript - 8 : Built-in locators
Playwright with JavaScript - 7 : Locating Multiple Web-Elements
Просмотров 59Месяц назад
Playwright with JavaScript - 7 : Locating Multiple Web-Elements
Playwright with JavaScript - 6 : Locators ( Xpath , using property )
Просмотров 23Месяц назад
Playwright with JavaScript - 6 : Locators ( Xpath , using property )
Playwright with JavaScript - 5 : Locators ( css selector, using text)
Просмотров 50Месяц назад
Playwright with JavaScript - 5 : Locators ( css selector, using text)
Playwright with JavaScript - 4 : First Test Creation & Execution
Просмотров 53Месяц назад
Playwright with JavaScript - 4 : First Test Creation & Execution
Playwright with JavaScript - 3 : Installation and setup
Просмотров 87Месяц назад
Playwright with JavaScript - 3 : Installation and setup
Playwright with JavaScript - 2 : Architecture of Playwright
Просмотров 40Месяц назад
Playwright with JavaScript - 2 : Architecture of Playwright
Playwright with JavaScript - 1 : Introduction
Просмотров 83Месяц назад
Playwright with JavaScript - 1 : Introduction
Git and GitHub Tutorial 36 : .gitignore file usage
Просмотров 622 месяца назад
Git and GitHub Tutorial 36 : .gitignore file usage
Git and GitHub Tutorial 35 : PR and Resolving merge conflicts locally
Просмотров 162 месяца назад
Git and GitHub Tutorial 35 : PR and Resolving merge conflicts locally
Git and GitHub Tutorial 34: PR and Resolving merge conflicts on github
Просмотров 122 месяца назад
Git and GitHub Tutorial 34: PR and Resolving merge conflicts on github
Git and GitHub Tutorial 33 : Pull Request in github
Просмотров 232 месяца назад
Git and GitHub Tutorial 33 : Pull Request in github
Git and GitHub Tutorial 32: Setting upstream ( -u option )
Просмотров 102 месяца назад
Git and GitHub Tutorial 32: Setting upstream ( -u option )
Git and GitHub Tutorial 31: Add, Rename & Remove Remote origin url to Git Repo, Meaning of origin
Просмотров 182 месяца назад
Git and GitHub Tutorial 31: Add, Rename & Remove Remote origin url to Git Repo, Meaning of origin
Git and GitHub Tutorial 30: git restore command
Просмотров 382 месяца назад
Git and GitHub Tutorial 30: git restore command
Git and GitHub Tutorial 29: git revert commit ( revert vs reset )
Просмотров 282 месяца назад
Git and GitHub Tutorial 29: git revert commit ( revert vs reset )
Git and GitHub Tutorial 28: Modifying recent commit (git commit --amend)
Просмотров 262 месяца назад
Git and GitHub Tutorial 28: Modifying recent commit (git commit amend)
Git and GitHub Tutorial 27: Git fetch
Просмотров 312 месяца назад
Git and GitHub Tutorial 27: Git fetch

Комментарии

  • @helnavincent7495
    @helnavincent7495 3 часа назад

    How to write Select()

  • @gauravmane9287
    @gauravmane9287 День назад

    Hello , configparser.NoSectionError: No section: how to solve this

  • @alpharoyal8483
    @alpharoyal8483 8 дней назад

    can u share the notes please

  • @ibekwevictor1158
    @ibekwevictor1158 11 дней назад

    You can only delete custom added cookies and not predefined cookies right?

    • @qtomation
      @qtomation 11 дней назад

      you can delete both custom added cookies and predefined cookies as well.

    • @ibekwevictor1158
      @ibekwevictor1158 11 дней назад

      @qtomation okay Thank you bro

  • @ibekwevictor1158
    @ibekwevictor1158 11 дней назад

    any video on any other test framework

  • @suchitrapradhan7862
    @suchitrapradhan7862 13 дней назад

    Hi, hope you are doing good thank you for sharing such useful framework making. I am having an error while login , because of the warning pop up (check password and save password dialogue box is popping up ) please tell me how to handle that.

  • @ibekwevictor1158
    @ibekwevictor1158 14 дней назад

    nice video,Tanks man

  • @ibekwevictor1158
    @ibekwevictor1158 15 дней назад

    part 35 --- thanks for the tutorial brother ,hopefully i will finish up the tutorial

  • @SravanKumarChepuri
    @SravanKumarChepuri 16 дней назад

    Really nice content, i am react developer can i test e2e react app?

  • @DakshineshwariStudio
    @DakshineshwariStudio 18 дней назад

    concepts are nicely explained

  • @DakshineshwariStudio
    @DakshineshwariStudio 18 дней назад

    Best tutorial on python .Thanks for making such videos

  • @DakshineshwariStudio
    @DakshineshwariStudio 18 дней назад

    class MyClass: def __init__(self): print("Constructor called!") # Creating three objects obj1 = MyClass() # Constructor called! obj2 = MyClass() # Constructor called! obj3 = MyClass() # Constructor called! In this example, the __init__ constructor will be called three times, once for each object (obj1, obj2, and obj3) created. if you create three different objects, the constructor will be called three times.

  • @ShikhaSharma-vu4xr
    @ShikhaSharma-vu4xr 20 дней назад

    sir whenever i try to automate nopcommerce site it is asking for human varification and i am not able to automate it pls suggest me what to do

    • @qtomation
      @qtomation 20 дней назад

      Hey hi.. looks like that website has added this human verification captcha recently. Try disconnecting vpn if you are on it and try once. If it still did not work , then I would recommend to use some other website for preactice , like www.automationteststore.com Just understand the concept from this video's, rest of things and actual practical we can do on any demo website. In future I will make another framework series with some other websites

  • @stylishyousuf
    @stylishyousuf 25 дней назад

    Helpful

  • @DakshineshwariStudio
    @DakshineshwariStudio 26 дней назад

    Content is very good and nicely explained

  • @ShubhamMane-r4w
    @ShubhamMane-r4w 27 дней назад

    its a nice series please add some new website frameworks

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

    Good 1

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

    Please share notes

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

    thank you so much for this video it helped me a lot 🙇🙇🙏

  • @omprakash.b_Harish
    @omprakash.b_Harish Месяц назад

    Installed npm and visual studio code Visual code -terminal - npm init playwright@latest it has below error PS C:\Playwright_Project> npm init playwright@latest npm : The term 'npm' is not recognized as the name of a cmdlet, function, script file, or operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. At line:1 char:1 + npm init playwright@latest + ~~~ + CategoryInfo : ObjectNotFound: (npm:String) [], CommandNotFoundException + FullyQualifiedErrorId : CommandNotFoundException Please reply ?

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

    👌

  • @Vikramgoud-m3m
    @Vikramgoud-m3m Месяц назад

    Hi Bro, while I'm trying to create action method class video at 22:45 inside class method unable to get driver.find_element suggestion. Please help me here

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

    Hi, when I tried to run my code, a verification page popped up, causing the `test_valid_admin` to fail. Can anyone help? Thanks!

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

      If you are connected to some vpn etc, try once disconnecting it and then execute case.

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

      @@qtomation I didn't connect VPN. It is still showing verifying you are human. I tried some solutions on stack overflow, but it still doesn't work. 🥲

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

    Notes of all PPTs in one pdf : link in description

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

    Notes of all PPTs in one pdf : link in description

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

    Notes of all PPTs in one pdf : link in description

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

    Notes of all PPTs in one pdf : link in description

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

    Notes of all PPTs in one pdf : link in description

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

    🚀 Get All Manual Testing Slides in One Place! Check Description ! 📄 380+ Slides packed with everything you need for interviews and quick revision are now available in a single PDF.

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

    🚀 Get All Manual Testing Slides in One Place! Check Description ! 📄 380+ Slides packed with everything you need for interviews and quick revision are now available in a single PDF.

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

    Liked my personal notes ? you can get those in one pdf , check description

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

    Liked my personal notes ? you can get those in one pdf , check description

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

    Liked my personal notes ? you can get those in one pdf , check description

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

    Check Description ! 🚀 Get All Manual Testing Slides in One Place! 📄 380+ Slides packed with everything you need for interviews and quick revision are now available in a single PDF. all in one pdf

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

    Check Description ! 🚀 Get All Manual Testing Slides in One Place! 📄 380+ Slides packed with everything you need for interviews and quick revision are now available in a single PDF.

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

    all session notes pdf of manual testing in description

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

    all notes in one pdf , check description of video.

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

    Notes link in description !

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

    check description for all notes All in one pdf .

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

    check description for all notes All in one pdf .

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

    check description for all notes

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

    check description for all notes

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

    check description for all notes

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

    🚀 Get All Manual Testing Slides in One Place! Check Description ! 📄 380+ Slides packed with everything you need for interviews and quick revision are now available in a single PDF.

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

    📄 380+ Slides packed with everything you need for interviews and quick revision are now available in a single PDF. Check Description ! 🚀 Get All Manual Testing Slides in One Place!

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

    🚀 Get All Manual Testing Slides in One Place! Check Description ! 📄 380+ Slides packed with everything you need for interviews and quick revision are now available in a single PDF.

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

    🚀 Get All Manual Testing Slides in One Place! Check Description ! 📄 380+ Slides packed with everything you need for interviews and quick revision are now available in a single PDF.

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

    Check Description ! 🚀 Get All Manual Testing Slides in One Place! 📄 380+ Slides packed with everything you need for interviews and quick revision are now available in a single PDF.

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

    Check Description ! 🚀 Get All Manual Testing Slides in One Place! 📄 380+ Slides packed with everything you need for interviews and quick revision are now available in a single PDF.

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

    📄 380+ Slides packed with everything you need for interviews and quick revision are now available in a single PDF. Check Description ! 🚀 Get All Manual Testing Slides in One Place!