我是水豚的新手。我正在使用 WebDriver 驱动程序,我想附加到字段值而不是覆盖整个内容。
当我使用方法 fill_in 时,它会覆盖整个值(清除然后填充)。但是,我只想附加到字段中的现有值。
我是水豚的新手。我正在使用 WebDriver 驱动程序,我想附加到字段值而不是覆盖整个内容。
当我使用方法 fill_in 时,它会覆盖整个值(清除然后填充)。但是,我只想附加到字段中的现有值。
看起来send_keys
会是你的朋友。
尝试find_field('Your field').native.send_keys('some text')
可能你想在Capybara中以这种方式做
定义任何方法 定位器策略 = :css if(obj_locator[0]=='/' || obj_locator[0,2] == '(/')) locator_strategy = :xpath 结尾 find(locator_strategy, locator_path).native.send_keys('some text') 结尾