File tree Expand file tree Collapse file tree 2 files changed +1
-3
lines changed
Expand file tree Collapse file tree 2 files changed +1
-3
lines changed Original file line number Diff line number Diff line change @@ -5,7 +5,6 @@ export const texts = {
55 choose : "Choose file" ,
66 description : "Add a descriptive title to your document" ,
77 done : "Done" ,
8- content : "Text editor for creating content" ,
98 post : "Pst" ,
109 } ,
1110 cz : {
@@ -14,7 +13,6 @@ export const texts = {
1413 choose : "Vybrat soubor" ,
1514 description : "Přidejte popisný název svého dokumentu" ,
1615 done : "Hotovo" ,
17- content : "O čem chcete napsat?" ,
1816 post : "Zeveřejnit" ,
1917 } ,
2018} as const ;
Original file line number Diff line number Diff line change @@ -45,7 +45,7 @@ test("test", async ({ page }) => {
4545 await page . getByPlaceholder ( texts [ lang ] . description ) . fill ( altOfFile ) ;
4646 await page . getByRole ( "button" , { name : texts [ lang ] . done } ) . click ( ) ;
4747
48- await page . getByRole ( "textbox" , { name : texts [ lang ] . content } ) . fill ( postText ) ;
48+ await page . getByRole ( "textbox" ) . fill ( postText ) ;
4949 await page . waitForSelector ( ".share-creation-state iframe" ) ;
5050 await page . getByRole ( "button" , { name : texts [ lang ] . post } ) . click ( ) ;
5151} ) ;
You can’t perform that action at this time.
0 commit comments