Hello everyone, I’m Ceyhun. Today i will share some tips regarding preparing and using Selenium scripts with Python. -Use page object model, its very important to start your project with it.. Make some demo project or start with basic writing and show difference to your team. -Use unittest module or something similar to organize your […]
Yazar: ceyhunalyesil
Cleaning TMP Folder for Jenkins
I’m using jenkins with alot of plugins, also running my selenium cases on same machine so as you guess we have very big tmp folder after each day. Do fix this issue, i added a cron job, used root access since some files requires it before deleting. Its not safe and i suggest using another […]
Graphite Installation Problems
I spent some time to install graphite then decided to not use it since it requires more effort and i have to reinstall again to another machine. Here some notes in case you face some problems: Carefull to uncomment your settings file’s required field, most importantly db side. There is no manage.py file anymore so […]
Neden Çalışırız?
Ailemiz, arkadaşlarımız, hayallerimiz. Birlikte mutlu olmak için. Siz siz olun bu amacı ortadan kaldırmayın. İşiniz bir anda dağılır, başarının sırrı neydi diye arayıp durursunuz.
Jenkins Python Selenium Installation
Hello everyone i was facing some problems so i had to setup my jenkins server again so here are steps “after” jenkins installation, you can check it below, first install git. apt-get install git Setup your git repo and settings in project page. You should not see any error message when you add credentials. Git […]
Dörtler
Olabilir veya olmayabilir ama şu an burdayım. Soğuk bir kış gününde o küçük pencerenin karşısındayım. Sen inanmasanda bekliyor, sabrediyorum. Sana değil, aşkıma iman ediyorum.
Python Selenium Text Check
Hi, Below code may help you to check source with input text: def is_text_present(self, text): if str(text) in self.driver.page_source: print “Found this text %s” % text else: Exception() […]
Firefox 47 Linux Downgrade
We faced some problems between firefox 47 and selenium thats why we decided to downgrade to version 46 on our development and jenkins platforms. Here simple guide for downgrading it. Sadly ubuntu only support latest version of package (version 47) and version 28 so we will do it manually. Remove existing one but don’t delete […]
Mac İki Skype Birden Açma
Konu şu, 2 ayrı app çalıştırıyorsunuz, ayrı ayrı login oluyorsunuz. 1: Terminal’i aç 2: cd /Applications/Skype.app/Contents/MacOS/ 3: sudo ./Skype Bu şekilde hazır açık skype dururken ikinciyi açmış olacaksınız.