From beda3d5035fea68913021324813609c3f9ff1c5b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luk=C3=A1=C5=A1=20Ka=C5=88ka?= <124378142+LukasKanka@users.noreply.github.com> Date: Wed, 3 Jan 2024 19:50:01 +0100 Subject: [PATCH] screen --- articles/playwright-instalace-vscode.html | 105 ++++++++++++++++++++ articles/snimky-obrazovky-v-playwright.html | 68 +++++++++++++ automatizovana-testovani.html | 1 + 3 files changed, 174 insertions(+) create mode 100644 articles/playwright-instalace-vscode.html create mode 100644 articles/snimky-obrazovky-v-playwright.html diff --git a/articles/playwright-instalace-vscode.html b/articles/playwright-instalace-vscode.html new file mode 100644 index 0000000..b9b5099 --- /dev/null +++ b/articles/playwright-instalace-vscode.html @@ -0,0 +1,105 @@ + + + + + + + + + + + + Testing Docs - Rychlí způsob instalace Playwright v + VSCode + + + +

Testing Docs CZ

+

Dokumentace pro všechny testery

+
+ +
+ +
+ + +
+

Rychlí způsob instalace Playwright v + VSCode

+

Nejrychlejší způsob instalace Playwright v VSCOde * Jdi do složky projektu + pomocí CMD / terminálu a tam zadej:

+ +
+

npm init playwright@latest

+
+ +

Projdi instalací Playwright

+ +
+

Run the install command and select the following to get + started:

+

Choose between TypeScript or JavaScript (default is + TypeScript) + Name of your Tests folder (default is tests or e2e if you + already have a tests folder in your project) + Add a GitHub Actions workflow to easily run tests on CI + Install Playwright browsers (default is true)

+
+ +

Test tímto způsobem instalace spustíme pomocí:

+ +
+

npx playwright test

+

npm init playwright@latest

+
+ +

+ Test tímto způsobem instalace spustíme pomocí:

+ +
+

+ npx playwright test

+
+ +
+ +
+ + + + + +
Nejdůležitější články:
+
  • Co je automatizované + testování +
  • +
  • Otázky a odpovědí k + Playwright
  • +
    +
    +
    + + + + + \ No newline at end of file diff --git a/articles/snimky-obrazovky-v-playwright.html b/articles/snimky-obrazovky-v-playwright.html new file mode 100644 index 0000000..f2e0eda --- /dev/null +++ b/articles/snimky-obrazovky-v-playwright.html @@ -0,0 +1,68 @@ + + + + + + + + + + + + Testing Docs - Snímky obrazovky v Playwright + + + +

    Testing Docs CZ

    +

    Dokumentace pro všechny testery

    +
    + +
    + +
    + + +
    +

    Text

    +

    Text

    +
    +
    + + + + + +
    Nejdůležitější články:
    +
  • Co je automatizované + testování +
  • +
  • Otázky a odpovědí k + Playwright
  • +
    +
    +
    + + + + + \ No newline at end of file diff --git a/automatizovana-testovani.html b/automatizovana-testovani.html index 2cd9bd9..c6e78d5 100644 --- a/automatizovana-testovani.html +++ b/automatizovana-testovani.html @@ -57,6 +57,7 @@
  • Playwright DotNet
  • Reporty v Playwright
  • +
  • Playwright instalace VSCode