Home >Backend Development >Python Tutorial >Why Does InstaPy Fail with \'cannot determine loading status from tab crashed\' and How Can I Fix It?

Why Does InstaPy Fail with \'cannot determine loading status from tab crashed\' and How Can I Fix It?

Mary-Kate Olsen
Mary-Kate OlsenOriginal
2024-11-24 21:15:14452browse

Why Does InstaPy Fail with

Unable to Determine Loading Status from Tab Crashed

Problem:

When using InstaPy, a Python and Selenium-based program, users sometimes encounter the error "unknown error: session deleted because of page crash from unknown error: cannot determine loading status from tab crashed."

Error Message:

ERROR [2018-12-10 09:53:54] [user]  Error occurred while deleting cookies from web browser!
b'Message: invalid session id\n  (Driver info: chromedriver=2.44.609551 (5d576e9a44fe4c5b6a07e568f1ebc753f1214634),platform=Linux 4.15.0-42-generic x86_64)\n'

Possible Reasons:

  • Small size of /dev/shm in Docker containers
  • Chrome crashing due to insufficient memory

Solutions:

  • Add --no-sandbox Argument:
chrome_options.add_argument('--no-sandbox')
  • Fix Small /dev/shm Size:
sudo mount -t tmpfs -o rw,nosuid,nodev,noexec,relatime,size=512M tmpfs /dev/shm
  • Share Host /dev/shm:
-v /dev/shm:/dev/shm
  • Disable /dev/shm Usage:
chrome_options.add_argument('--disable-dev-shm-usage')

Additional Notes:

  • This error relates to a Chromium issue where Linux attempts to use /dev/shm for non-executable memory.
  • The fix was implemented in Chrome version 65.0.3299.6.

The above is the detailed content of Why Does InstaPy Fail with \'cannot determine loading status from tab crashed\' and How Can I Fix It?. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn