You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

23 line
563 B

  1. context("Control Markdown Editor", () => {
  2. before(() => {
  3. cy.login();
  4. cy.visit("/app");
  5. });
  6. it("should allow inserting images by drag and drop", () => {
  7. cy.visit("/app/web-page/new");
  8. cy.fill_field("content_type", "Markdown", "Select");
  9. cy.get_field("main_section_md", "Markdown Editor").selectFile(
  10. "cypress/fixtures/sample_image.jpg",
  11. {
  12. action: "drag-drop",
  13. }
  14. );
  15. cy.click_modal_primary_button("Upload");
  16. cy.get_field("main_section_md", "Markdown Editor").should(
  17. "contain",
  18. "![](/private/files/sample_image"
  19. );
  20. });
  21. });