Skip to content

Commit 14c63cb

Browse files
authored
Merge pull request #445 from apify/new-tools
feat(tools): add migrated content
2 parents 8fd01a2 + dd5a756 commit 14c63cb

19 files changed

+91
-2
lines changed

content/academy/puppeteer_playwright.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ npm install puppeteer
5858
4. [Reading & intercepting requests]({{@link puppeteer_playwright/reading_intercepting_requests.md}})
5959
5. [Using proxies]({{@link puppeteer_playwright/proxies.md}})
6060
6. [Creating multiple browser contexts]({{@link puppeteer_playwright/browser_contexts.md}})
61-
61+
7. [Common use cases]({{@link puppeteer_playwright/common_use_cases.md}})
6262

6363
## [](#next) First up
6464

content/academy/puppeteer_playwright/common_use_cases.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: VII - Common use cases
2+
title: Common use cases
33
description: Learn about some of the most common uses cases of Playwright and Puppeteer, and how to handle these use cases when you run into them.
44
menuWeight: 7.7
55
paths:
Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
---
2+
title: EditThisCookie
3+
description: Learn how to add, delete, and modify different cookies in your browser for testing purposes.
4+
menuWeight: 9.7
5+
paths:
6+
- tools/edit-this-cookie
7+
---
8+
9+
# [](#what-is-it) What's EditThisCookie?
10+
11+
**EditThisCookie** is a simple Chrome extension to manage your browser's cookies. It can be added through the [Chrome Web Store](https://chrome.google.com/webstore/category/extensions). After adding it to Chrome, you'll see a button with a delicious cookie icon next to any other Chrome extensions you might have installed. Clicking on it will open a pop-up window with a list of all saved cookies associated with the currently opened page domain.
12+
13+
![EditThisCookie popup]({{@asset tools/images/edit-this-cookie-popup.webp}})
14+
15+
## [](#functions) Functionalities
16+
17+
At the top of the popup, there is a row of buttons. From left to right, here is an explanation for each one:
18+
19+
### Delete all cookies
20+
21+
Clicking this button will simply remove all cookies associated with the current domain. For example, if you're logged into your Apify account and delete all the cookies, the website will ask you to log in again.
22+
23+
### Reset
24+
25+
Basically just a refresh button.
26+
27+
### Add a new cookie
28+
29+
Manually add new cookie for the current domain.
30+
31+
### Import cookies
32+
33+
Allows you to add cookies in bulk. For example, if you have saved some cookies inside your crawler, or someone provided you with some cookies for the purpose of testing a certain website in your browser, they can be imported and automatically applied with this button.
34+
35+
### Export cookies
36+
37+
Copies an array of cookies associated with the current domain to the clipboard. The cookies can then be later inspected, added to your crawler, or imported by someone else using EditThisCookie.
38+
39+
### Search
40+
41+
Allows you to filter through cookies by name.
42+
43+
### Options
44+
45+
Will open a new browser tab with a bunch of EditThisCookie options. The options page allows you to tweak a few settings such as changing the export format, but you will most likely never need to change anything there.
46+
47+
![EditThisCookie options]({{@asset tools/images/edit-this-cookie-options.webp}})
65.9 KB
Loading
Binary file not shown.
67.4 KB
Loading
Binary file not shown.
9.69 KB
Loading
4.9 KB
Binary file not shown.
9 KB
Loading

0 commit comments

Comments
 (0)