Hi, I am trying to extract keywords from resources into my test case, but it is showing import file not found. hw can i solve this issue.
My Resource folder file contains all the necessary keywords. As below.
*** Settings ***
Library SeleniumLibrary
Variables …/PageObjects/Toolspageobjects.py
*** Keywords ***
Open Tools Login Page
[Arguments] {ToolsURL} {Browser}
open browser {ToolsURL} {Browser}
maximize browser window
And my python file contains the necessary variables, that are stored to get the relative path of the browser.
Tools login Page Elements
company_name = “name:txtCompanyName”
user_name = “name:txtUserName”
password = “name:txtPassword”
sign_in = “name:ibtnLoginBottom”
I dont know what to do, tried multiple things, nothing gave most concrete solution.
