Skip to content

Commit 1bda438

Browse files
committed
Merge branch 'feature/edge-browser-implementation' of github.com:Harris-H/pydoll into feature/edge-browser-implementation
2 parents c57045f + eb1a4e0 commit 1bda438

22 files changed

+1980
-173
lines changed

.github/workflows/tests.yml

+6-2
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,16 @@ on:
77
jobs:
88
tests:
99
runs-on: ubuntu-latest
10+
strategy:
11+
fail-fast: false
12+
matrix:
13+
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
1014
steps:
1115
- uses: actions/checkout@v3
12-
- name: Set up Python 3.12
16+
- name: Set up Python ${{ matrix.python-version }}
1317
uses: actions/setup-python@v4
1418
with:
15-
python-version: "3.12"
19+
python-version: ${{ matrix.python-version }}
1620
- name: Install dependencies
1721
run: |
1822
python -m pip install poetry

CHANGELOG.md

+30
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,33 @@
1+
## 1.3.1 (2025-03-12)
2+
3+
### Fix
4+
5+
- remove unnecessary encoding from screenshot response data
6+
7+
## 1.3.0 (2025-03-12)
8+
9+
### Feat
10+
11+
- add method to retrieve screenshot as base64 encoded string
12+
13+
## 1.2.4 (2025-03-11)
14+
15+
### Fix
16+
17+
- refactor Chrome constructor to use Optional for parameters
18+
19+
## 1.2.3 (2025-03-11)
20+
21+
### Fix
22+
23+
- refactor proxy configuration retrieval for cleaner code flow
24+
25+
## 1.2.2 (2025-03-10)
26+
27+
### Fix
28+
29+
- Get file extension from file path and changes use of reserved word 'format' to 'fmt'
30+
131
## 1.2.1 (2025-03-09)
232

333
### Fix

0 commit comments

Comments
 (0)