English 中文(简体)
机器人框架的网页上没有适当展示网络要素
原标题:WebElements are not displayed properly on page in robot framework
  • 时间:2023-06-01 07:49:52
  •  标签:
  • python

I am working with robot framework on UI testing of web application. IN which I use chrome browser, and load application by writing robot script. but some web elements are not displayed properly on page for chrome, firefox and edge also. I try it on my team mates machine It working fine means web elements are displayed properly. This issue is occur only on my machine for chrome, firefox and edge. I am not able to find out the cause.

期望是网页上适当可见的网络内容。

问题回答

Following steps will help to solve your problem: 1-check the stable version of chrome or edge driver 2-use the robot assertions to check either element is visible, you can use "wait until element is visible " "wait until page contains" "page should contains" 3-try to make a copy of your project,clean your cache 4-copy all scripts and use with fresh copy of project 5-check the robot seleniumlibrary version





相关问题
Can Django models use MySQL functions?

Is there a way to force Django models to pass a field to a MySQL function every time the model data is read or loaded? To clarify what I mean in SQL, I want the Django model to produce something like ...

An enterprise scheduler for python (like quartz)

I am looking for an enterprise tasks scheduler for python, like quartz is for Java. Requirements: Persistent: if the process restarts or the machine restarts, then all the jobs must stay there and ...

How to remove unique, then duplicate dictionaries in a list?

Given the following list that contains some duplicate and some unique dictionaries, what is the best method to remove unique dictionaries first, then reduce the duplicate dictionaries to single ...

What is suggested seed value to use with random.seed()?

Simple enough question: I m using python random module to generate random integers. I want to know what is the suggested value to use with the random.seed() function? Currently I am letting this ...

How can I make the PyDev editor selectively ignore errors?

I m using PyDev under Eclipse to write some Jython code. I ve got numerous instances where I need to do something like this: import com.work.project.component.client.Interface.ISubInterface as ...

How do I profile `paster serve` s startup time?

Python s paster serve app.ini is taking longer than I would like to be ready for the first request. I know how to profile requests with middleware, but how do I profile the initialization time? I ...

Pragmatically adding give-aways/freebies to an online store

Our business currently has an online store and recently we ve been offering free specials to our customers. Right now, we simply display the special and give the buyer a notice stating we will add the ...

Converting Dictionary to List? [duplicate]

I m trying to convert a Python dictionary into a Python list, in order to perform some calculations. #My dictionary dict = {} dict[ Capital ]="London" dict[ Food ]="Fish&Chips" dict[ 2012 ]="...

热门标签