diff --git a/src/Plugin/EntityBrowser/Widget/View.php b/src/Plugin/EntityBrowser/Widget/View.php
index 605f782..fe3e384 100644
--- a/src/Plugin/EntityBrowser/Widget/View.php
+++ b/src/Plugin/EntityBrowser/Widget/View.php
@@ -43,6 +43,7 @@ class View extends WidgetBase implements ContainerFactoryPluginInterface {
     return array(
       'view' => NULL,
       'view_display' => NULL,
+      'arguments' => [],
     ) + parent::defaultConfiguration();
   }
 
@@ -250,6 +251,14 @@ class View extends WidgetBase implements ContainerFactoryPluginInterface {
       '#required' => TRUE,
     ];
 
+    $form['arguments'] = [
+      '#type' => 'textfield',
+      '#title' => $this->t('Arguments'),
+      '#description' => $this->t('Optionally pass url arguments to the view, e.g. <em>1/2/2</em>.'),
+      '#default_value' => implode('/', $this->configuration['arguments']),
+      '#pattern' => '\d+(/\d+)*',
+    ];
+
     return $form;
   }
 
@@ -265,6 +274,7 @@ class View extends WidgetBase implements ContainerFactoryPluginInterface {
       $this->configuration['view'] = $view_id;
       $this->configuration['view_display'] = $display_id;
     }
+    $this->configuration['arguments'] = !empty($values['arguments']) ? explode('/', $values['arguments']) : [];
   }
 
   /**
diff --git a/src/Tests/ConfigUITest.php b/src/Tests/ConfigUITest.php
index da58a79..c954579 100644
--- a/src/Tests/ConfigUITest.php
+++ b/src/Tests/ConfigUITest.php
@@ -115,6 +115,7 @@ class ConfigUITest extends WebTestBase {
     $this->assertText('Label (View)');
     $this->assertText('View : View display', 'View selection dropdown label found.');
     $this->assertRaw('- Select a view -', 'Empty option appears in the view selection dropdown.');
+    $this->assertText('Arguments', 'Views arguments field element label found.');
     $this->assertText('Submit button text', 'Widget submit button text element found.');
     $this->assertFieldByXPath('//*[starts-with(@data-drupal-selector, "edit-table-") and contains(@data-drupal-selector, "-form-submit-text")]', 'Select entities', 'Widget submit button text element found.');
     $delete_buttons = $this->xpath("//input[@value='Delete']");
diff --git a/tests/src/Kernel/Extension/EntityBrowserTest.php b/tests/src/Kernel/Extension/EntityBrowserTest.php
index 8a102b7..496b911 100644
--- a/tests/src/Kernel/Extension/EntityBrowserTest.php
+++ b/tests/src/Kernel/Extension/EntityBrowserTest.php
@@ -181,6 +181,7 @@ class EntityBrowserTest extends KernelTestBase {
           'settings' => [
             'view' => 'test_view',
             'view_display' => 'test_display',
+            'arguments' => [],
             'submit_text' => 'Select entities',
             'auto_select' => FALSE,
           ],
