xvfbwrapper 0.2.24__tar.gz → 0.2.25__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {xvfbwrapper-0.2.24/xvfbwrapper.egg-info → xvfbwrapper-0.2.25}/PKG-INFO +7 -4
- {xvfbwrapper-0.2.24 → xvfbwrapper-0.2.25}/README.md +6 -3
- {xvfbwrapper-0.2.24 → xvfbwrapper-0.2.25}/pyproject.toml +1 -1
- {xvfbwrapper-0.2.24 → xvfbwrapper-0.2.25/xvfbwrapper.egg-info}/PKG-INFO +7 -4
- {xvfbwrapper-0.2.24 → xvfbwrapper-0.2.25}/LICENSE +0 -0
- {xvfbwrapper-0.2.24 → xvfbwrapper-0.2.25}/MANIFEST.in +0 -0
- {xvfbwrapper-0.2.24 → xvfbwrapper-0.2.25}/setup.cfg +0 -0
- {xvfbwrapper-0.2.24 → xvfbwrapper-0.2.25}/test_xvfb.py +0 -0
- {xvfbwrapper-0.2.24 → xvfbwrapper-0.2.25}/tox.ini +0 -0
- {xvfbwrapper-0.2.24 → xvfbwrapper-0.2.25}/xvfbwrapper.egg-info/SOURCES.txt +0 -0
- {xvfbwrapper-0.2.24 → xvfbwrapper-0.2.25}/xvfbwrapper.egg-info/dependency_links.txt +0 -0
- {xvfbwrapper-0.2.24 → xvfbwrapper-0.2.25}/xvfbwrapper.egg-info/top_level.txt +0 -0
- {xvfbwrapper-0.2.24 → xvfbwrapper-0.2.25}/xvfbwrapper.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: xvfbwrapper
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.25
|
|
4
4
|
Summary: Manage headless displays with Xvfb (X virtual framebuffer)
|
|
5
5
|
Author: Corey Goldberg
|
|
6
6
|
Maintainer: Corey Goldberg
|
|
@@ -44,6 +44,11 @@ Dynamic: license-file
|
|
|
44
44
|
- Releases: [PyPI][pypi-home]
|
|
45
45
|
- License: [MIT][mit-license]
|
|
46
46
|
|
|
47
|
+
The package provides the `xvfvwrapper.Xvfb` class that is used to interact with
|
|
48
|
+
an Xvfb server.
|
|
49
|
+
|
|
50
|
+
See the [module API documentation][api-docs] for more information.
|
|
51
|
+
|
|
47
52
|
----
|
|
48
53
|
|
|
49
54
|
## Status
|
|
@@ -253,9 +258,6 @@ import unittest
|
|
|
253
258
|
from selenium import webdriver
|
|
254
259
|
from xvfbwrapper import Xvfb
|
|
255
260
|
|
|
256
|
-
# force X11 in case we are running on a Wayland system
|
|
257
|
-
os.environ["XDG_SESSION_TYPE"] = "x11"
|
|
258
|
-
|
|
259
261
|
|
|
260
262
|
class TestPage(unittest.TestCase):
|
|
261
263
|
|
|
@@ -311,3 +313,4 @@ if __name__ == "__main__":
|
|
|
311
313
|
[github-repo]: https://github.com/cgoldberg/xvfbwrapper
|
|
312
314
|
[pypi-home]: https://pypi.org/project/xvfbwrapper
|
|
313
315
|
[mit-license]: https://raw.githubusercontent.com/cgoldberg/xvfbwrapper/refs/heads/master/LICENSE
|
|
316
|
+
[api-docs]: https://coreygoldberg.com/xvfbwrapper
|
|
@@ -13,6 +13,11 @@
|
|
|
13
13
|
- Releases: [PyPI][pypi-home]
|
|
14
14
|
- License: [MIT][mit-license]
|
|
15
15
|
|
|
16
|
+
The package provides the `xvfvwrapper.Xvfb` class that is used to interact with
|
|
17
|
+
an Xvfb server.
|
|
18
|
+
|
|
19
|
+
See the [module API documentation][api-docs] for more information.
|
|
20
|
+
|
|
16
21
|
----
|
|
17
22
|
|
|
18
23
|
## Status
|
|
@@ -222,9 +227,6 @@ import unittest
|
|
|
222
227
|
from selenium import webdriver
|
|
223
228
|
from xvfbwrapper import Xvfb
|
|
224
229
|
|
|
225
|
-
# force X11 in case we are running on a Wayland system
|
|
226
|
-
os.environ["XDG_SESSION_TYPE"] = "x11"
|
|
227
|
-
|
|
228
230
|
|
|
229
231
|
class TestPage(unittest.TestCase):
|
|
230
232
|
|
|
@@ -280,3 +282,4 @@ if __name__ == "__main__":
|
|
|
280
282
|
[github-repo]: https://github.com/cgoldberg/xvfbwrapper
|
|
281
283
|
[pypi-home]: https://pypi.org/project/xvfbwrapper
|
|
282
284
|
[mit-license]: https://raw.githubusercontent.com/cgoldberg/xvfbwrapper/refs/heads/master/LICENSE
|
|
285
|
+
[api-docs]: https://coreygoldberg.com/xvfbwrapper
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: xvfbwrapper
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.25
|
|
4
4
|
Summary: Manage headless displays with Xvfb (X virtual framebuffer)
|
|
5
5
|
Author: Corey Goldberg
|
|
6
6
|
Maintainer: Corey Goldberg
|
|
@@ -44,6 +44,11 @@ Dynamic: license-file
|
|
|
44
44
|
- Releases: [PyPI][pypi-home]
|
|
45
45
|
- License: [MIT][mit-license]
|
|
46
46
|
|
|
47
|
+
The package provides the `xvfvwrapper.Xvfb` class that is used to interact with
|
|
48
|
+
an Xvfb server.
|
|
49
|
+
|
|
50
|
+
See the [module API documentation][api-docs] for more information.
|
|
51
|
+
|
|
47
52
|
----
|
|
48
53
|
|
|
49
54
|
## Status
|
|
@@ -253,9 +258,6 @@ import unittest
|
|
|
253
258
|
from selenium import webdriver
|
|
254
259
|
from xvfbwrapper import Xvfb
|
|
255
260
|
|
|
256
|
-
# force X11 in case we are running on a Wayland system
|
|
257
|
-
os.environ["XDG_SESSION_TYPE"] = "x11"
|
|
258
|
-
|
|
259
261
|
|
|
260
262
|
class TestPage(unittest.TestCase):
|
|
261
263
|
|
|
@@ -311,3 +313,4 @@ if __name__ == "__main__":
|
|
|
311
313
|
[github-repo]: https://github.com/cgoldberg/xvfbwrapper
|
|
312
314
|
[pypi-home]: https://pypi.org/project/xvfbwrapper
|
|
313
315
|
[mit-license]: https://raw.githubusercontent.com/cgoldberg/xvfbwrapper/refs/heads/master/LICENSE
|
|
316
|
+
[api-docs]: https://coreygoldberg.com/xvfbwrapper
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|