Skip to content
Snippets Groups Projects
Commit eaaf1ebc authored by Byron Biggs's avatar Byron Biggs
Browse files

Testing phoneNumbers

parent 634b80f0
No related branches found
No related tags found
No related merge requests found
......@@ -52,10 +52,10 @@
<h2>Phone Numbers</h2> <!--heading for phone number section -->
<!-- Placeholder message when no phone numbers are present -->
<div th:if="${phoneNumbers == null or #lists.isEmpty(phoneNumbers)}"><!--if phoneNumbersd table is empty -->
<div th:if="${phoneNumbers == null}"><!--if phoneNumbersd table is empty -->
<p style="text-align: center; font-style: italic;">No phone call requests at present</p> <!--message tells admin table is empty -->
</div>
<table border="1" th:if="${phoneNumbers != null and not #lists.isEmpty(phoneNumbers)}"> <!-- render the table only if phone numbers data is not empty -->
<table border="1" th:if="${phoneNumbers != null}"> <!-- render the table only if phone numbers data is not empty -->
<thead>
<tr>
<th>ID</th> <!--column heading for ID-->
......
// Generated by Selenium IDE
package com.example.demo.Selenium;// Generated by Selenium IDE
import org.junit.Test;
import org.junit.Before;
import org.junit.After;
......@@ -38,7 +38,7 @@ public class LanguageFormatTest {
}
@Test
public void languageFormat() {
driver.get("http://10.72.103.217/");
driver.get("http://10.72.103.217/"); // Remember to change this later
driver.manage().window().setSize(new Dimension(1936, 1048));
driver.findElement(By.id("dropdownLanguage")).click();
driver.findElement(By.linkText("English")).click();
......
// Generated by Selenium IDE
package com.example.demo.Selenium;// Generated by Selenium IDE
import org.junit.Test;
import org.junit.Before;
import org.junit.After;
......
// Generated by Selenium IDE
package com.example.demo.Selenium;// Generated by Selenium IDE
import org.junit.Test;
import org.junit.Before;
import org.junit.After;
......
// Generated by Selenium IDE
package com.example.demo.Selenium;// Generated by Selenium IDE
import org.junit.Test;
import org.junit.Before;
import org.junit.After;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment