I use Python Scrapy and i try to connect to this site.
I create a test account for this question
Email: g2387744@nwytg.com
password: 123456789
When I monitor the network during authentification

I tried to fill the form with FormRequest
data = {'loginName': 'g2387744@nwytg.com',
'password' : '123456789',
'rememberme' : 'true'
}
yield FormRequest("https://ecustomermw.colruytgroup.com/ecustomermw/v1/fr/customer/logon?client=cogo_cogo&variant=none" ,method="POST",formdata=data)
but I'm not logged in and I redirected to signup page
I read this answer and I tried with Selenium
username = driver.find_element_by_id("loginName")
password = driver.find_element_by_id("password")
username.send_keys("g2387744@nwytg.com")
password.send_keys("123456789")
driver.find_elements_by_class_name("button.btn.large").click()
But I'm not logged in and I redirected to signup page
Where am I wrong?