Exemplo n.º 1
0
 class HostConfigurationChart(View):
     ROOT = ".//li[@data-name='Host Configuration Chart for All']"
     chart = PieChart(".//div[@id='host_configuration_chart_all']")
Exemplo n.º 2
0
 class PausedChart(View):
     ROOT = ".//div[@id='paused-tasks-card']"
     name = Text("./h2")
     total = PieChart("./div[@class='card-pf-body']")
Exemplo n.º 3
0
 class HostConfigurationChart(View):
     ROOT = ".//li[@data-name='Host Configuration Chart for All']"
     chart = PieChart(".//div[@class='host-configuration-chart']")
Exemplo n.º 4
0
 class RunningChart(View):
     ROOT = ".//div[@id='running-tasks-card']"
     name = Text("./h2")
     total = PieChart("./div[@class='card-pf-body']")