arsenic 21.8-2build1 source package in Ubuntu

Changelog

arsenic (21.8-2build1) resolute; urgency=medium

  * No-change mass rebuild for Ubuntu 26.04 (LP: #2132257)

 -- Graham Inggs <email address hidden>  Tue, 09 Dec 2025 21:45:46 +0000

Upload details

Uploaded by:
Graham Inggs
Uploaded to:
Resolute
Original maintainer:
Gianfranco Costamagna
Architectures:
all
Section:
misc
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section
Resolute release universe misc

Builds

Resolute: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
arsenic_21.8.orig.tar.gz 15.9 KiB 1ac2d29ff447b648f870ce241660d0584d847f07f8fd6f00117e8aba0594e927
arsenic_21.8-2build1.debian.tar.xz 1.9 KiB 0a37672218ffc95f8cdca55b5a58ac8abf859a5e55174449880866ef1259afee
arsenic_21.8-2build1.dsc 1.8 KiB fbf6ec01bf303c6ec15444a1e90f8fb2aef8c16742b5c8bc9c0a410f55f2fd60

Available diffs

View changes file

Binary packages built by this source

python3-arsenic: Asynchronous WebDriver client

 Asynchronous webdriver client built on asyncio.
 .
 Let's run a local Firefox instance.
 .
 from arsenic import get_session
 from arsenic.browsers import Firefox
 from arsenic.services import Geckodriver
 .
 .
 async def example():
     # Runs geckodriver and starts a firefox session
     async with get_session(Geckodriver(), Firefox()) as session:
           # go to example.com
           await session.get('http://example.com')
           # wait up to 5 seconds to get the h1 element from the page
           h1 = await session.wait_for_element(5, 'h1')
           # print the text of the h1 element
           print(await h1.get_text())
 .
 Alternatively also other drivers can be run, e.g.
 Chromedriver or MSEdgeDriver