1e7e9171eSGeorge Keishing#!/usr/bin/env python3 2b89977a4SRahul Maheshwari 3b89977a4SRahul Maheshwarir""" 4b89977a4SRahul MaheshwariThis is an extended user library to support Robot Selenium code. 5b89977a4SRahul MaheshwariThe class contains functions which the robot framework will use 6b89977a4SRahul Maheshwariand import as a user-defined keyword. 7b89977a4SRahul Maheshwari""" 8b89977a4SRahul Maheshwari 9b89977a4SRahul Maheshwariimport socket 10b89977a4SRahul Maheshwari 11b89977a4SRahul Maheshwari 12*20f38712SPatrick Williamsclass supporting_libs: 13b89977a4SRahul Maheshwari def get_hostname_from_ip_address(self, ip): 14b89977a4SRahul Maheshwari return socket.gethostbyaddr(ip)[0] 15