1. Sign In Page
Steps to login:
Enter Email
Enter Password
Click on sign in button, will be navigated to sessions page
2. How to run a manual session on CloudifyTests?
We support four different browsers - chrome, firefox, edge and opera with multiple browsers versions
Pre requisite:
You should be on capabilities page
Steps to run a manual session:
Select any Browser (chrome/firefox/edge/opera)
Select any Browser Version from drop down
Select Device from drop down(eg. Desktop,etc)
Select screen resolution(eg. 1920*1080)
Enter Manual session Timeout time (min 1 minute and max 120 minutes)
Enter Test name (as per your choice)
Enter Build name(as per your choice)
Click on Run Manually button
After clicking on run manually button, user will be navigated to a new tab where session would start getting created
Find attached below video link for running a manual session:
www.youtube.com/watch?v=_MJ3ZpO2Cbc&feature=youtu.be
3. How to trigger automation session using selenium with python?
Browser :- Chrome
Pre-requisite :-
You should have an automation framework
Python
Allure
Steps to run an automation session :
Go to cloudify capabilities page
Select all the necessary options like browser “chrome”, language “python” etc
It will generate all capabilities information at the left side of window.
Refer the below snap :-
Copy the capabilities code from life side of window and paste it to the file “conftest.py”
Now create one py file , where you write the automation code , like what would be executed in a automated session
Example :-
# # route to cloudifytests
driver.get("https://www.cloudifytests.io/")
time.sleep(5)
# # route to tftus.com
driver.get("https://www.tftus.com/")
time.sleep(5)
Hit the run command “pytest {name_of_py file}”
Check the session on the session page , it should be created and running