<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>TestersDock</title>
	<atom:link href="https://testersdock.com/feed/" rel="self" type="application/rss+xml" />
	<link>https://testersdock.com/</link>
	<description>Info Hub For Testers</description>
	<lastBuildDate>Sun, 04 Sep 2022 21:56:40 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	
	<item>
		<title>How to execute HTML Document Methods in Playwright</title>
		<link>https://testersdock.com/execute-html-document-method-playwright/</link>
					<comments>https://testersdock.com/execute-html-document-method-playwright/#respond</comments>
		
		<dc:creator><![CDATA[Alapan]]></dc:creator>
		<pubDate>Sun, 04 Sep 2022 21:22:51 +0000</pubDate>
				<category><![CDATA[Playwright]]></category>
		<guid isPermaLink="false">https://testersdock.com/?p=7440</guid>

					<description><![CDATA[<p>This article will discuss how we can execute the HTML document methods in Playwright. You can find the list of HTML Document methods here. 1. Extract the Inner text of the element and then assert it. 1234567test&#40;'Extract innerText and assert', async &#40;&#123;page&#125;&#41; =&#62; &#123; &#160; await page.goto&#40;'https://the-internet.herokuapp.com/'&#41; &#160; var locator = await page.evaluate&#40; &#160; &#160; [&#8230;]</p>
<p>The post <a href="https://testersdock.com/execute-html-document-method-playwright/">How to execute HTML Document Methods in Playwright</a> appeared first on <a href="https://testersdock.com">TestersDock</a>.</p>
]]></description>
		
					<wfw:commentRss>https://testersdock.com/execute-html-document-method-playwright/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>How to capture screenshots in Playwright</title>
		<link>https://testersdock.com/playwright-screenshot-capture/</link>
					<comments>https://testersdock.com/playwright-screenshot-capture/#respond</comments>
		
		<dc:creator><![CDATA[Alapan]]></dc:creator>
		<pubDate>Mon, 29 Aug 2022 10:14:24 +0000</pubDate>
				<category><![CDATA[Playwright]]></category>
		<guid isPermaLink="false">https://testersdock.com/?p=7418</guid>

					<description><![CDATA[<p>In this article, we will discuss in detail how we can capture screenshots in playwright. 1. Screenshot of the current visible window 1234test&#40;'Capture screenshot of the visible window', async &#40;&#123;page&#125;&#41; =&#62; &#123; &#160; await page.goto&#40;'https://the-internet.herokuapp.com/'&#41; &#160; await page.screenshot&#40;&#123;path: 'screenshot/visibleWindow.png'&#125;&#41; &#125;&#41; Upon executing this, a folder &#8216;screenshot&#8217; will be created(if not already there), and the screenshot [&#8230;]</p>
<p>The post <a href="https://testersdock.com/playwright-screenshot-capture/">How to capture screenshots in Playwright</a> appeared first on <a href="https://testersdock.com">TestersDock</a>.</p>
]]></description>
		
					<wfw:commentRss>https://testersdock.com/playwright-screenshot-capture/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>File Download in Playwright</title>
		<link>https://testersdock.com/playwright-download-file/</link>
					<comments>https://testersdock.com/playwright-download-file/#respond</comments>
		
		<dc:creator><![CDATA[Alapan]]></dc:creator>
		<pubDate>Sun, 24 Jul 2022 16:18:15 +0000</pubDate>
				<category><![CDATA[Playwright]]></category>
		<guid isPermaLink="false">https://testersdock.com/?p=7374</guid>

					<description><![CDATA[<p>In this article, we will look in detail at how we can download files in Playwright. 1. Single File Download: &#8211; Here we are using Promise.all to prevent a race condition between clicking and waiting for the download. &#8211; Then we are calling waitForEvent before click to set up waiting. &#8211; Then using page.locator(&#8216;text=evening.png&#8217;).click() we [&#8230;]</p>
<p>The post <a href="https://testersdock.com/playwright-download-file/">File Download in Playwright</a> appeared first on <a href="https://testersdock.com">TestersDock</a>.</p>
]]></description>
		
					<wfw:commentRss>https://testersdock.com/playwright-download-file/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Interesting things that you can do with Playwright Command Line Tools</title>
		<link>https://testersdock.com/playwright-command-line-tools/</link>
					<comments>https://testersdock.com/playwright-command-line-tools/#respond</comments>
		
		<dc:creator><![CDATA[Alapan]]></dc:creator>
		<pubDate>Sun, 10 Jul 2022 07:08:51 +0000</pubDate>
				<category><![CDATA[Playwright]]></category>
		<guid isPermaLink="false">https://testersdock.com/?p=7340</guid>

					<description><![CDATA[<p>In this article, we will look into some of the interesting things that you can do with Playwright Command Line Tools. 1. Generating PDFs &#8211; You can convert any webpage into a PDF file using the Playwright command line. This feature only works in headless chromium. 1npx playwright pdf https://en.wikipedia.org/wiki/Helsinki Helsinki.pdf Once the command is [&#8230;]</p>
<p>The post <a href="https://testersdock.com/playwright-command-line-tools/">Interesting things that you can do with Playwright Command Line Tools</a> appeared first on <a href="https://testersdock.com">TestersDock</a>.</p>
]]></description>
		
					<wfw:commentRss>https://testersdock.com/playwright-command-line-tools/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Cypress 10 Upgrade</title>
		<link>https://testersdock.com/cypress-10-upgrade/</link>
					<comments>https://testersdock.com/cypress-10-upgrade/#comments</comments>
		
		<dc:creator><![CDATA[Alapan]]></dc:creator>
		<pubDate>Sun, 19 Jun 2022 05:46:16 +0000</pubDate>
				<category><![CDATA[Cypress]]></category>
		<guid isPermaLink="false">https://testersdock.com/?p=7259</guid>

					<description><![CDATA[<p>In this article, I will discuss in detail how I upgraded my current project to cypress 10. I would also highly recommend you to go through the official migration guide by cypress before, if you are planning to do an upgrade. Step 1: Install Cypress 10. 1npm install --save-dev cypress@10.1.0 &#160; Step 2: After successful [&#8230;]</p>
<p>The post <a href="https://testersdock.com/cypress-10-upgrade/">Cypress 10 Upgrade</a> appeared first on <a href="https://testersdock.com">TestersDock</a>.</p>
]]></description>
		
					<wfw:commentRss>https://testersdock.com/cypress-10-upgrade/feed/</wfw:commentRss>
			<slash:comments>2</slash:comments>
		
		
			</item>
		<item>
		<title>File Upload in Playwright</title>
		<link>https://testersdock.com/playwright-file-upload/</link>
					<comments>https://testersdock.com/playwright-file-upload/#respond</comments>
		
		<dc:creator><![CDATA[Alapan]]></dc:creator>
		<pubDate>Sun, 12 Jun 2022 13:41:41 +0000</pubDate>
				<category><![CDATA[Playwright]]></category>
		<guid isPermaLink="false">https://testersdock.com/?p=7231</guid>

					<description><![CDATA[<p>In this article, we will discuss how we can upload single/multiple files in playwright. 1. Single file upload &#8211; Here we are using the setInputFiles playwright method to select the files for file upload. Next, we are clicking the Upload button and finally to verify that the upload was successful, we are asserting the file [&#8230;]</p>
<p>The post <a href="https://testersdock.com/playwright-file-upload/">File Upload in Playwright</a> appeared first on <a href="https://testersdock.com">TestersDock</a>.</p>
]]></description>
		
					<wfw:commentRss>https://testersdock.com/playwright-file-upload/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>How to debug scripts using Playwright Inspector</title>
		<link>https://testersdock.com/debug-scripts-using-playwright-inspector/</link>
					<comments>https://testersdock.com/debug-scripts-using-playwright-inspector/#respond</comments>
		
		<dc:creator><![CDATA[Alapan]]></dc:creator>
		<pubDate>Sun, 05 Jun 2022 19:53:22 +0000</pubDate>
				<category><![CDATA[Playwright]]></category>
		<guid isPermaLink="false">https://testersdock.com/?p=7134</guid>

					<description><![CDATA[<p>In this article, we will discuss in detail how we can debug playwright scripts and locators using the Inspector. 1) To launch the test script in debug mode, we will have to use the command: 1PWDEBUG=1 npx playwright test tests/2-checkBox.spec.ts tests/2-checkBox.spec.ts is the path+file name of the test script from the project root. &#160; 2) [&#8230;]</p>
<p>The post <a href="https://testersdock.com/debug-scripts-using-playwright-inspector/">How to debug scripts using Playwright Inspector</a> appeared first on <a href="https://testersdock.com">TestersDock</a>.</p>
]]></description>
		
					<wfw:commentRss>https://testersdock.com/debug-scripts-using-playwright-inspector/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>How to automatically generate scripts with Playwright Inspector</title>
		<link>https://testersdock.com/generate-scripts-playwright-inspector/</link>
					<comments>https://testersdock.com/generate-scripts-playwright-inspector/#respond</comments>
		
		<dc:creator><![CDATA[Alapan]]></dc:creator>
		<pubDate>Sat, 28 May 2022 10:02:19 +0000</pubDate>
				<category><![CDATA[Playwright]]></category>
		<guid isPermaLink="false">https://testersdock.com/?p=7129</guid>

					<description><![CDATA[<p>Playwright Inspector is a GUI tool to automatically generate Playwright Scripts. So let&#8217;s generate a test script with the following test steps: 1. Open the URL https://the-internet.herokuapp.com/login 2. Insert username and password 3. Login Successfully Step 1: Open the playwright inspector using the command: 1npx playwright codegen https://the-internet.herokuapp.com/login Upon Successful execution, two windows should appear [&#8230;]</p>
<p>The post <a href="https://testersdock.com/generate-scripts-playwright-inspector/">How to automatically generate scripts with Playwright Inspector</a> appeared first on <a href="https://testersdock.com">TestersDock</a>.</p>
]]></description>
		
					<wfw:commentRss>https://testersdock.com/generate-scripts-playwright-inspector/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>How to create Allure HTML Reports with Playwright</title>
		<link>https://testersdock.com/allure-playwright/</link>
					<comments>https://testersdock.com/allure-playwright/#respond</comments>
		
		<dc:creator><![CDATA[Alapan]]></dc:creator>
		<pubDate>Sat, 26 Mar 2022 16:37:56 +0000</pubDate>
				<category><![CDATA[Playwright]]></category>
		<guid isPermaLink="false">https://testersdock.com/?p=7082</guid>

					<description><![CDATA[<p>In this article, we will discuss in detail how we can create HTML reports with Allure in 5 simple steps. Step 1: Install the allure-playwright node package. This project implements Allure integration with Playwright Test framework. To install, use the command: 1npm i -D allure-playwright &#160; Step 2: Install the allure-commandline node package. Allure Commandline [&#8230;]</p>
<p>The post <a href="https://testersdock.com/allure-playwright/">How to create Allure HTML Reports with Playwright</a> appeared first on <a href="https://testersdock.com">TestersDock</a>.</p>
]]></description>
		
					<wfw:commentRss>https://testersdock.com/allure-playwright/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>How to handle Shadow DOM in Playwright</title>
		<link>https://testersdock.com/playwright-shadow-dom/</link>
					<comments>https://testersdock.com/playwright-shadow-dom/#respond</comments>
		
		<dc:creator><![CDATA[Alapan]]></dc:creator>
		<pubDate>Sun, 20 Mar 2022 06:44:04 +0000</pubDate>
				<category><![CDATA[Playwright]]></category>
		<guid isPermaLink="false">https://testersdock.com/?p=7058</guid>

					<description><![CDATA[<p>In this article, we will be discussing in detail how to handle shadow dom in Playwright. Let&#8217;s further deep dive and automate the below scenario: 1. Open https://books-pwakit.appspot.com/ 2. Traverse through the shadow DOM and reach the input box 3. Write the keyword &#8216;Science&#8217; and press the &#8216;Enter&#8217; key to trigger a search 4. Validate [&#8230;]</p>
<p>The post <a href="https://testersdock.com/playwright-shadow-dom/">How to handle Shadow DOM in Playwright</a> appeared first on <a href="https://testersdock.com">TestersDock</a>.</p>
]]></description>
		
					<wfw:commentRss>https://testersdock.com/playwright-shadow-dom/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
