From de1f078897448524dcb0d5dee37e03a072406e93 Mon Sep 17 00:00:00 2001 From: James Prestwood Date: Thu, 30 Jun 2022 11:03:25 -0700 Subject: [PATCH] auto-t: iwd.py: add DPP properties --- autotests/util/iwd.py | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/autotests/util/iwd.py b/autotests/util/iwd.py index 019d5073..db91ab8a 100755 --- a/autotests/util/iwd.py +++ b/autotests/util/iwd.py @@ -287,6 +287,18 @@ class DeviceProvisioning(IWDDBusAbstract): def stop(self): self._iface.Stop() + @property + def uri(self): + return self._properties['URI'] + + @property + def started(self): + return self._properties['Started'] + + @property + def role(self): + return self._properties['Role'] + class Device(IWDDBusAbstract): ''' Class represents a network device object: net.connman.iwd.Device