| Server IP : 202.61.199.114 / Your IP : 216.73.217.139 Web Server : nginx/1.22.1 System : Linux de.arni-solutions.de 6.1.0-49-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.174-1 (2026-05-26) x86_64 User : web20 ( 1018) PHP Version : 8.4.23 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /tmp/ |
Upload File : |
from playwright.sync_api import sync_playwright
TOK="3ec35a9e6db2fd95853240f2"; BID=open('/tmp/lzfix.txt').read().strip()
url="https://seaside.pacim.de/checkin.php?t=%s&b=%s"%(TOK,BID)
with sync_playwright() as p:
b=p.chromium.launch(); pg=b.new_context(viewport={"width":440,"height":820}).new_page()
pg.goto(url, wait_until="networkidle"); pg.wait_for_timeout(500)
print("initial timerow:", pg.inner_text('#ci-timelabel'),'/',pg.inner_text('#ci-timeval'))
pg.click('#ci-action-btn'); pg.wait_for_timeout(1200) # check-in
print("after check-in:", pg.inner_text('#ci-timelabel'),'/',pg.inner_text('#ci-timeval'))
# cancel countdown to stay
try: pg.click('#ci-cancel'); pg.wait_for_timeout(400)
except Exception as e: print('cancel:',e)
# now auscheck
pg.click('#ci-action-btn'); pg.wait_for_timeout(1200)
print("after auscheck:", pg.inner_text('#ci-timelabel'),'/',pg.inner_text('#ci-timeval'))
b.close()