Skip to content

My task is Completed #1

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/test/java/stepdefinations/AppiumScenario.java
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ public AppiumScenario() {

@Given("^I open the application$")
public void i_open_the_application() throws Throwable {
Assert.assertTrue(driver.findElement(By.xpath("//*[@text='Accessibility']")).isDisplayed());
Assert.assertTrue(driver.findElement(By.xpath("//*[@text='Accessibility']")).isEnabled());
}

@When("^I tap on Accessibility$")
Expand Down
2 changes: 1 addition & 1 deletion target/surefire-reports/Regression/Window.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
<!-- Generated by org.testng.reporters.JUnitXMLReporter -->
<!-- Generated by org.testng.reporters.JUnitXMLReporter -->
<testsuite hostname="DESKTOP-02QTJU3" ignored="0" name="Window" tests="1" failures="0" timestamp="15 Sep 2017 18:40:00 GMT" time="9.99" errors="0">
<testcase name="feature" time="9.526" classname="cucumber.api.testng.AbstractTestNGCucumberTests"/>
</testsuite> <!-- Window -->
2 changes: 1 addition & 1 deletion target/surefire-reports/TestSuite.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
-------------------------------------------------------------------------------
Test set: TestSuite
-------------------------------------------------------------------------------
Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 10.603 sec - in TestSuite
Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 10.603 sec - in TestSuite
80 changes: 40 additions & 40 deletions target/surefire-reports/index.html
Original file line number Diff line number Diff line change
@@ -1,26 +1,26 @@
<!DOCTYPE html>

<html>
<head>
<meta charset='utf-8'>
<title>TestNG reports</title>

<link type="text/css" href="testng-reports.css" rel="stylesheet" />
<script type="text/javascript" src="jquery-1.7.1.min.js"></script>
<script type="text/javascript" src="testng-reports.js"></script>
<script type="text/javascript" src="https://www.google.com/jsapi"></script>
<script type='text/javascript'>
google.load('visualization', '1', {packages:['table']});
google.setOnLoadCallback(drawTable);
var suiteTableInitFunctions = new Array();
var suiteTableData = new Array();
</script>
<!--
<script type="text/javascript" src="jquery-ui/js/jquery-ui-1.8.16.custom.min.js"></script>
-->
</head>

<body>
<!DOCTYPE html>
<html>
<head>
<meta charset='utf-8'>
<title>TestNG reports</title>
<link type="text/css" href="testng-reports.css" rel="stylesheet" />
<script type="text/javascript" src="jquery-1.7.1.min.js"></script>
<script type="text/javascript" src="testng-reports.js"></script>
<script type="text/javascript" src="https://www.google.com/jsapi"></script>
<script type='text/javascript'>
google.load('visualization', '1', {packages:['table']});
google.setOnLoadCallback(drawTable);
var suiteTableInitFunctions = new Array();
var suiteTableData = new Array();
</script>
<!--
<script type="text/javascript" src="jquery-ui/js/jquery-ui-1.8.16.custom.min.js"></script>
-->
</head>
<body>
<div class="top-banner-root">
<span class="top-banner-title-font">Test results</span>
<br/>
Expand Down Expand Up @@ -188,21 +188,21 @@
<div class="main-panel-content rounded-window-bottom">
<div class="times-div">
<script type="text/javascript">
suiteTableInitFunctions.push('tableData_Regression');
function tableData_Regression() {
var data = new google.visualization.DataTable();
data.addColumn('number', 'Number');
data.addColumn('string', 'Method');
data.addColumn('string', 'Class');
data.addColumn('number', 'Time (ms)');
data.addRows(1);
data.setCell(0, 0, 0)
data.setCell(0, 1, 'feature')
data.setCell(0, 2, 'runner.RunTest')
data.setCell(0, 3, 9526);
window.suiteTableData['Regression']= { tableData: data, tableDiv: 'times-div-Regression'}
return data;
}
suiteTableInitFunctions.push('tableData_Regression');
function tableData_Regression() {
var data = new google.visualization.DataTable();
data.addColumn('number', 'Number');
data.addColumn('string', 'Method');
data.addColumn('string', 'Class');
data.addColumn('number', 'Time (ms)');
data.addRows(1);
data.setCell(0, 0, 0)
data.setCell(0, 1, 'feature')
data.setCell(0, 2, 'runner.RunTest')
data.setCell(0, 3, 9526);
window.suiteTableData['Regression']= { tableData: data, tableDiv: 'times-div-Regression'}
return data;
}
</script>
<span class="suite-total-time">Total running time: 9 seconds</span>
<div id="times-div-Regression">
Expand Down Expand Up @@ -247,5 +247,5 @@
</div> <!-- panel -->
</div> <!-- main-panel-root -->
</div> <!-- wrapper -->
</body>
</html>
</body>
</html>
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
<!-- Generated by org.testng.reporters.JUnitReportReporter -->
<!-- Generated by org.testng.reporters.JUnitReportReporter -->
<testsuite name="runner.RunTest" tests="1" time="9.526" ignored="0" failures="0" timestamp="15 Sep 2017 18:40:00 GMT" skipped="0" hostname="DESKTOP-02QTJU3" errors="0">
<testcase name="feature" time="9.526" classname="runner.RunTest"/>
</testsuite> <!-- runner.RunTest -->