blob: ae7d0054150b9bba50ee8174e6c7aa9786a72ec3 [file] [log] [blame]
#!/usr/bin/env python3
r"""
This is an extended user library to support Robot Selenium code.
The class contains functions which the robot framework will use
and import as a user-defined keyword.
"""
import socket
class supporting_libs:
def get_hostname_from_ip_address(self, ip):
return socket.gethostbyaddr(ip)[0]