logging in with selenium
driver.get (“URL”) driver.find_element_by_id(“ID”).send_keys(“username”) driver.find_element_by_id (“ID”).send_keys(“password”) driver.find_element_by_id(“submit”).click()
logging in with selenium
driver.get (“URL”) driver.find_element_by_id(“ID”).send_keys(“username”) driver.find_element_by_id (“ID”).send_keys(“password”) driver.find_element_by_id(“submit”).click()
how to use log4j in framework
How do you use Log4J in your framework? Basically it is printing/logging the important events of the application/test run. in my project I did logging using the log4j library. I added the library dependency into pom.xml. For logging we create an object from Logger Interface and LogManager class using getLogger method and passing the class name in it; private static Logger log = LogManager.getLogger(LogDemo.class.getName()); static Logger log = Logger.getLogger(log4jExample.class.getName()); We create it by passing the name of the current class. Then we can use this object to do our logging. log.info log.debug log.fatal log.error The Logger object is responsible for capturing logging information and they are stored in a namespace hierarchy.
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us