diff --git a/src/botmation/bots/instagram/actions/auth.ts b/src/botmation/bots/instagram/actions/auth.ts index 418b2a506..a486ead7c 100644 --- a/src/botmation/bots/instagram/actions/auth.ts +++ b/src/botmation/bots/instagram/actions/auth.ts @@ -1,18 +1,18 @@ import { Page } from 'puppeteer' -import { BotAction } from 'botmation/interfaces/bot-action.interfaces' -import { BotActionsChainFactory } from 'botmation/factories/bot-actions-chain.factory' +import { BotAction } from '../../../interfaces/bot-action.interfaces' +import { BotActionsChainFactory } from '../../../factories/bot-actions-chain.factory' -import { goTo, waitForNavigation } from 'botmation/actions/navigation' -import { log } from 'botmation/actions/console' +import { goTo, waitForNavigation } from '../../../actions/navigation' +import { log } from '../../../actions/console' -import { getInstagramLoginUrl } from 'botmation/bots/instagram/helpers/urls' +import { getInstagramLoginUrl } from '../helpers/urls' import { FORM_AUTH_USERNAME_INPUT_SELECTOR, FORM_AUTH_PASSWORD_INPUT_SELECTOR, FORM_AUTH_SUBMIT_BUTTON_SELECTOR } from '../selectors' -import { click, type } from 'botmation/actions/input' +import { click, type } from '../../../actions/input' diff --git a/src/botmation/bots/instagram/helpers/auth.ts b/src/botmation/bots/instagram/helpers/auth.ts index 369a76ce1..63654ae9d 100644 --- a/src/botmation/bots/instagram/helpers/auth.ts +++ b/src/botmation/bots/instagram/helpers/auth.ts @@ -1,8 +1,8 @@ import { Page } from 'puppeteer' -import { goTo } from 'botmation/actions/navigation' -import { BotOptions } from 'botmation/interfaces/bot-options.interfaces' -import { ConditionalBotAction } from 'botmation/interfaces' +import { goTo } from '../../../actions/navigation' +import { BotOptions } from '../../../interfaces/bot-options.interfaces' +import { ConditionalBotAction } from '../../../interfaces/bot-action.interfaces' import { getInstagramLoginUrl } from './urls'