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 […]
Etiket: selenium
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() […]