معرفی شرکت ها


a-selenium-errorhandler-0.10


Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر

توضیحات

Ignores all ChromeDriver Exceptions, returns the Exception(s) as string
ویژگی مقدار
سیستم عامل -
نام فایل a-selenium-errorhandler-0.10
نام a-selenium-errorhandler
نسخه کتابخانه 0.10
نگهدارنده []
ایمیل نگهدارنده []
نویسنده Johannes Fischer
ایمیل نویسنده <aulasparticularesdealemaosp@gmail.com>
آدرس صفحه اصلی https://github.com/hansalemaos/a_selenium_errorhandler
آدرس اینترنتی https://pypi.org/project/a-selenium-errorhandler/
مجوز MIT
# Ignores all ChromeDriver Exceptions, returns the Exception(s) as string ```python # Tested with: # https://github.com/ultrafunkamsterdam/undetected-chromedriver # Python 3.9.13 # Windows 10 $pip install a-selenium-errorhandler from auto_download_undetected_chromedriver import download_undetected_chromedriver import undetected_chromedriver as uc from selenium.webdriver.common.by import By from a_selenium_errorhandler import add_ignore_exception if __name__ == "__main__": folderchromedriver = "f:\\seleniumdriver2" path = download_undetected_chromedriver( folder_path_for_exe=folderchromedriver, undetected=True ) driver = uc.Chrome(driver_executable_path=path) driver = add_ignore_exception(driver) # You can check if an executed command threw an Exception e1 = driver.find_element(By.CSS_SELECTOR, "not existing") if isinstance(e1, str): print("failed") else: print(e1) print("success") print("------------------") e1 = driver.find_element(By.CSS_SELECTOR, "*") if isinstance(e1, str): print("failed") else: print(e1) print("success") ```


نیازمندی

مقدار نام
- selenium


نحوه نصب


نصب پکیج whl a-selenium-errorhandler-0.10:

    pip install a-selenium-errorhandler-0.10.whl


نصب پکیج tar.gz a-selenium-errorhandler-0.10:

    pip install a-selenium-errorhandler-0.10.tar.gz