question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

[Bug] bet365.com stopped working 2 days ago

See original GitHub issue

edit: Further discussion should happen on the community discord


Describe the bug

  • Im trying to scrap bet365 website
  • Expect open the website bet365.com without problems.
  • I was using puppeteer-extra-plugin-stealth for this purpose but is not working anymore from 2 days ago.

Code Snippet

const fs = require('fs')
const json = require('JSON')
const puppeteer = require('puppeteer-extra')
const { Bot } = require('tgapi')
const mysql = require('mysql')
const StealthPlugin = require('puppeteer-extra-plugin-stealth')

var dbConfig ={
  host     : 'localhost',
  port     : '3307',
  user     : 'xxxx',
  password : 'xxxx',
  database : 'mydb'
}

let connection = mysql.createPool(dbConfig);
connection.setMaxListeners(20)

puppeteer.use(StealthPlugin())

//Ejecucion de Puppeteer
puppeteer.launch({ args: ['--start-maximized'], headless: false }).then(async browser => {
  console.log('Ejecutando script...')
  const page = await browser.newPage()

  await page.goto('https://www.bet365.es/#/IP/B1');

  etc...

Versions

System: OS: Windows 10 10.0.18363 CPU: (8) x64 Intel® Core™ i7-4790K CPU @ 4.00GHz Memory: 8.31 GB / 15.86 GB Binaries: Node: 12.17.0 - C:\Program Files\nodejs\node.EXE npm: 6.14.10 - ~\AppData\Roaming\npm\npm.CMD

Screenshot_7

Issue Analytics

  • State:closed
  • Created 3 years ago
  • Reactions:2
  • Comments:63 (10 by maintainers)

github_iconTop GitHub Comments

9reactions
vladtrenycommented, Jan 30, 2021

Hello friends,

Here I’ve created a temporary fix for bet365

Run this and it should work

        await page.evaluateOnNewDocument(() => {
            Object.defineProperty(navigator, 'maxTouchPoints', {
                get() {
                    return 1;
                },
            });

        });

Will take a closer look on free time

4reactions
apulidoccommented, Dec 22, 2020

Removing stealth plugin and adding ‘–disable-blink-features=AutomationControlled’ its working again

Read more comments on GitHub >

github_iconTop Results From Across the Web

Bet365 down? Current problems and outages - Downdetector
Real-time problems and outages for Bet365. Can't log in or place bets? Here you see what is going on.
Read more >
Bet365 down today December, 2022? Bet365.com not ...
Bet365 website down Today December, 2022? Can't log in? Real-time problems and outages - here you'll see what is going on.
Read more >
Sudden bet365 bet placing issue (auto logout) : r/sportsbook
It is a known issue and bet365 technical support acknowledges the issue that some IP addresses are kicked out when trying to place...
Read more >
Bet365 app betslips button unresponsive or grayed out after ...
Developers have acknowledged the issue with Bet365 betslips being unresponsive or grayed out after the recent update. A fix is in the works....
Read more >
Bet 365
No information is available for this page.
Read more >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found