I'm trying to learn automation with webdriverio tool using typescript. I am able to launch the browser and hit the URL. But unable to click the button in the initial screen.
Can someone help? Details below

front code for the button is
<button rfs-button-primary="" ng-attr-id="{{vm.generateButtonId(button)}}" type="button" ng-click="vm.startIvoConfig()" ng-disabled="vm.nextButtonDisabled" class="ng-binding" id="Bereken_uw_premie">Bereken uw premie</button>
I am writing the code as below in webdriverio tool
browser.maximizeWindow();
const button = $('#Bereken_uw_premie');
button.waitForDisplayed();
button.click();
But the button is not clicked. Any other solution?