Skip to content

Commit

Permalink
Merge pull request #50 from Pablo1618/small-fixes
Browse files Browse the repository at this point in the history
Small fixes
  • Loading branch information
MrKtosiek authored Jan 13, 2025
2 parents cf9da37 + 972c2e7 commit 4173b07
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 9 deletions.
2 changes: 1 addition & 1 deletion docker-compose.dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ services:

prestashop:
container_name: prestashop
image: mrktosiek/geekup-prestashop:1.5
image: mrktosiek/geekup-prestashop:1.6
restart: unless-stopped
depends_on:
- mysql
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
services:
prestashop:
image: mrktosiek/geekup-prestashop:1.5
image: mrktosiek/geekup-prestashop:1.6
ports:
- 19305:443
environment:
Expand Down
5 changes: 0 additions & 5 deletions prestashop/psdata/themes/child_classic/assets/css/custom.css
Original file line number Diff line number Diff line change
Expand Up @@ -619,11 +619,6 @@ p.h3.hidden-sm-down::before {
pointer-events: none;
}

.product-width {
width: 140%;
margin-left: -20%;
}

#wrapper .breadcrumb li::after {
color: rgb(246, 168, 2);
font-weight: 900;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ public class FunctionalTests {
@BeforeEach
public void setUp() throws IOException {

String websiteURL = "https://localhost:8443/index.php";
String websiteURL = "https://localhost:5242/index.php";

System.setProperty("webdriver.chrome.driver", new File("./src/main/resources/chromedriver.exe").getCanonicalPath());

Expand Down Expand Up @@ -144,7 +144,7 @@ public void searchAndAddProductToCart() throws InterruptedException {
@Test
public void RegisterAccountAndOrderProduct() throws InterruptedException {

wait.until(ExpectedConditions.elementToBeClickable(By.cssSelector("a[title='Register to your customer account']"))).click();
wait.until(ExpectedConditions.elementToBeClickable(By.cssSelector("div[class='login-register'] i[class='material-icons signIn']"))).click();

Random random = new Random();

Expand Down

0 comments on commit 4173b07

Please sign in to comment.