Search results

  1. Andy

    Javascript/Typescript How to remove/replace   from textContent()

    You may have a situation where you are getting a value from a table cell for example that renders like: Hello World But in the DOM is: <td>Hello&nbsp;World</td> If you then were checking the textContent of such a cell to compare if it is equal to something: if (locator.textContent() ===...
  2. Andy

    Automation Practice Websites

    Ultimate QA DemoQA Cypress Real World App SauceDemo.com This application is purely for demonstration and educational purposes. Its setup and configuration resemble typical real-world applications, but it's not a full-fledged production system. Use this app to learn, experiment, tinker, and...
  3. Andy

    Extensions Cucumber extensions

    I am currently using these two cucumber extensions to help develop e2e tests at work: Cucumber (Gherkin) Full Support Snippets and Syntax Highlight for Gherkin (Cucumber) Both certainly help with speed of development in terms of creating the feature files, auto-complete, and navigating from...
  4. Andy

    Extensions Playwright Test for VSCode

    I guess this is kind of an obvious one to be using - Playwright Test for VSCode Usage - from marketplace page: The extension automatically detects if you have Playwright Test installed and loads the Playwright Test projects into Visual Studio Code. By default, it will select the first project...
  5. Andy

    Themes What are your favorite themes?

    GitHub Theme My personal go-to is the GitHub theme. It comes with 6 variations which are: GitHub Light Default GitHub Light Colorblind GitHub Dark Default :love: GitHub Dark Colorblind GitHub Dark Dimmed GitHub Dark High Contrast I am totally colorblind but have managed just fine with the...
  6. Andy

    How to read key/value pairs from data table

    Consider you have a feature file containing a dataTable of field/value pairs: Given I login as user TestUser1 When I create the role | field | value | | name | My First Role | | description | Hello World | If you want to read...
Back
Top