Code development platform for open source projects from the European Union institutions :large_blue_circle: EU Login authentication by SMS will be completely phased out by mid-2025. To see alternatives please check here

Skip to content
Snippets Groups Projects
Commit b4de33b4 authored by comanca's avatar comanca
Browse files

Minor fixes and improvements

parent 1ca7771a
No related branches found
No related tags found
No related merge requests found
......@@ -219,6 +219,8 @@ public class DomainPgTest extends BaseTest {
SoftAssert soft = new SoftAssert();
DomainPage page = new DomainPage(driver);
page.refreshPage();
soft.assertTrue(page.isLoaded(), "Check that the page is loaded");
soft.assertTrue(!page.isDeleteButtonEnabled(), "Delete button is not enabled");
......
......@@ -24,7 +24,10 @@ public class SearchPgTest extends BaseTest {
@AfterMethod
public void resetFilters(){
new SMPPage(driver).refreshPage();
SMPPage page = new SMPPage(driver);
page.refreshPage();
page.waitForXMillis(500);
}
@Test(description = "SRCH-0")
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment