Search code examples
laravellaravel-dusk

press enter keyboard in laravel dusk


In Laravel dusk, how do I type text and press enter keyboard in it?

enter image description here

My input field needs to press enter keyboard to be able to add more than 1 item at there.


Solution

  • $browser->keys('selector', 'element1', '{enter}', 'otwell', '{enter}');
    

    Hope this will help you