Anasayfa / 2019 / Aralık

Monthly Archives: Aralık 2019

chrome python selenium adress bar visible

Python selenium adress bar visible for chrome Python selenium kullanarak chrome driverında adres çubuğunu gizlemek için chrome options olarak options.add_argument(–app=https://www.google.com) giriyoruz List of Chromium Command Line Switches from selenium.webdriver.chrome.options import Options options = Options() options.add_argument('start-maximized') options.add_argument('--app=https://www.google.com'); wd = webdriver.Chrome(executable_path=r'D:\chromedriver.exe',options=options)   https://peter.sh/experiments/chromium-command-line-switches/ List of Chromium Command Line Switches « Peter Beverloo …

Devamını Oku »

jpype._jexception.RuntimeExceptionPyRaisable: java.lang.RuntimeException: Class com.informix.jdbc.IfxDriver not found

Class com.informix.jdbc.IfxDriver not found Python ile jdbc kullanarak informix veritabanına bağlanırken aldığım bir hatanın çözümü için paylaşıyorum Not: artık gerekmiyor güncel jaydebeapi sürümünde bu ssorun giderilmiş. jpype._jexception.RuntimeExceptionPyRaisable: java.lang.RuntimeException: Class com.informix.jdbc.IfxDriver not found çözümü bu sayfadan JayDeBeApi3-1.3.tar.gz dosyasını indirin daha sonra ilgili dizinde pip install .\JayDeBeApi3-1.3.tar.gz    

Devamını Oku »