Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
python-docx / features / run-add-picture.feature
Size: Mime:
Feature: Add picture to a run
  In order to place an inline picture at an arbitrary place in a document
  As a developer using python-docx
  I need a way to add a picture to a run


  Scenario: Add a picture to a body paragraph run
    Given a run
     When I add a picture to the run
     Then the picture appears at the end of the run
      And the document contains the inline picture


  Scenario Outline: Add a picture to a run in a table cell
    Given a run inside a table cell retrieved from <cell-source>
     When I add a picture to the run
     Then the picture appears at the end of the run
      And the document contains the inline picture

    Examples: Table cell sources
      | cell-source        |
      | Table.cell         |
      | Table.row.cells    |
      | Table.column.cells |