David Schmidt
David Schmidt
it works with an older docker-selenium version, buit not with latest. docker-compose.yml `image: selenium/standalone-firefox:114.0-geckodriver-0.33-grid-4.10.0-20230614` and im a bit confused because the README says (https://github.com/teodesian/Selenium-Remote-Driver/blob/master/README.md) > This module is also not...
workaround ``` #package MyApp::Schema::Result::Foo; __PACKAGE__->add_unique_constraint('my_unique_constraint_name' => [qw/ bar baz /]); #package MyApp::Web::Form::Foo; override '_build_unique_constraints' => sub { ['my_unique_constraint_name'] }; ```