use gu.toggleSidePanel to open side panel (#523)

This hopefully fixes a test that was occasionally failing.
pull/524/head
Paul Fitzpatrick 1 year ago committed by GitHub
parent 7be0ee289d
commit 33d24e50f6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -12,9 +12,7 @@ describe('DescriptionWidget', function() {
await mainSession.tempDoc(cleanup, "CardView.grist", { load: true });
const newWidgetDesc = "This is the widget description\nIt is in two lines";
await driver.find('.test-right-opener').click();
// Sleep 100ms to let open the right panel and make the description input clickable
await driver.sleep(100);
await gu.toggleSidePanel('right', 'open');
const rightPanelDescriptionInput = await driver.find('.test-right-panel .test-right-widget-description');
await rightPanelDescriptionInput.click();
await rightPanelDescriptionInput.sendKeys(newWidgetDesc);

Loading…
Cancel
Save