blob: 4cc3044d5f6f00f60a41c77a0d4845d21fa6c552 [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]